SlideShare a Scribd company logo
1 of 94
Download to read offline
SAP scripts Tips and Tricks
SAP scripts is the standard SAP form design tools for user to developed customized form
printing format such as purchase orders, invoices, checks, labels. With the combination
of third party barcode software (barcode.dll) or printer with bardimm, you can print
barcode directly using SAP scripts.
SAP Scripts Reference Books
SAPscript Made Easy 4.6
ABAP Certification Books
ABAP Programming: A Guide to the Certification Course
Introduction
SAPScript Transaction codes
Commands
Reading Text in SAPScripts
Boxes/Lines/Shading
Printer commands in SAPScripts
Different font on the same line
Print Footer notes only on the last page
Orientations in SAPSCRIPT
Protect...Endprotect
Retrieving data without modifying the original called program
SAPscripts How to calculate Totals and Subtotals
Conversion
Developing SAPScript in different languages
Useful Program Tools
How to convert Sapscript spools request to PDF?
How to Upload graphics (IMAGE) to your Sapscript?
Import/Export SapScript form from PC file
Common Problems
Picture doesn't show in Print Preview
Delete Load program for SAPScript
Barcodes
Details information about SAP Barcodes
SapScripts FAQ
SapScript Question
Questions on PO SapScripts MEDRUCK
A Sample SAP Scripts Reports
SAP ABAP Forum at the convenient of your mail box
Exchange ABAP related problems/solutions, program, tips, ideas with other ABAP peers
from around the globe.
Note: An Auto Free ABAP Tips Windows Help File will be send to you upon Joining.
SAP ABAP Forum for ABAP Professional
enter email ad
Quick Links
ABAP Tips and Tricks Main Menu
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Functional, Basis and ABAP Programming Reference Books
SAPScript Transaction codes
SE71 - Form painter
SE72 - Style maintenance
SE78 - SapScript Graphics Management
SO10 - Create standard text module
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Reading Text in SAP Scripts
If you only need to output the text, you don't need to used READ_TEXT like in an
ABAP program,
just use the INCLUDE command in SAP Script.
It will read the text and output it to your form.
The Syntax is like this:
/: INCLUDE &T166K-TXNAM& OBJECT &T166K-TDOBJECT& ID &T166K-
TDID& LANGUAGE &EKKO-SPRAS&
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Scripts Boxes/Lines/Shading
Setting default parameters for a box:
You can use the POSITION and SIZE commands to set default parmeters for a box.
Instead of:
/: BOX XPOS '11.21' MM YPOS '5.31' MM HEIGHT '10' MM WIDTH '20' MM
INTENSITY 10 FRAME 0 TW
You can write:
/: POSITION XORIGIN '11.21' YORIGIN '5.31' MM
/: SIZE HEIGHT '2' MM WIDTH '76' MM
/: BOX FRAME 10 TW INTENSITY 10
This can be useful if you gave several boxes that share the same parameters.
If you want to set the position relatively to the window use POSITION WINDOW
to set the position to the top/left start of the window. Then use POSITION
to set the current position relatively to the start of the Window.
Note that you uses "+" or "-" in the ORIGIN position to the set the position relatively.
/: POSITION WINDOW
/: POSITION XORIGIN '+5' MM YORIGIN '+10' MM
the position is now 5 MM from the left and 10 MM from the top of the window
NOTE: After using the position command you can move the current position
realtively to the last used position
/: POSITION XORIGIN '+10' MM YORIGIN '+20' MM
Now the position will be X = 15 and Y = 30
Drawing a line. You can draw a line by setting the Height or Weidth to 0
and add a frane. E.g. a horizontal line:
/: SIZE HEIGHT '0' MM WIDTH '200' MM
/: BOX FRAME 10 TW XPOS '11.21' MM YPOS '14.81' MM INTENSITY 100
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
SAP Printer commands in SAPScripts
The command line in the editor must be as follows:
/: PRINT-CONTROL xxxxx
or
/: PRINT-CONTROL 'xxxxx'
where xxxxx stands for the five-character name of the print control.
Example:
/: PRINT-CONTROL ZM100
The complete printer command normally resides in the print control.
If characters belonging to the print command follow after the print control in the text
(only useful for the HPL2 printer driver for PCL-5 printers), the text line following after
the PRINT-CONTROL command should begin with an equals sign (=) in the format
column.
Example:
/: PRINT-CONTROL SESCP = *c5G
If you do not use the equals sign, a space character is inserted between the print control
SESCP and the character *c5G.
Refer to OSS note 5996 - How can SAPscript include printer commands?
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Different font on the same line
You can have different font on the same line by defining a character format.
For example B for bold text and U for Underline.
In your SAPScript apply like this :
<U>Underline Text</> <B>Bold Text</>
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Print Footer notes only on the last page
Command to used in your sapscripts :-
/: IF &NEXTPAGE& EQ 0
whatever footer you want.
/: ENDIF
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Orientations in SAPSCRIPT
-----Original Message-----
Subject: Orientations in SAPSCRIPT
From: Ashwini Jaokar
Hi,
I have 2 pages for a Form in SAPscript .
Can I have 2 different Orientations for 2 pages
Ie Can I assign Page1 as Portrait & page2 as Landscape ???
If so , How ????
Thanks in Advance.
Ashwini Jaokar.
-----Reply Message-----
Subject: Re: Orientations in SAPSCRIPT
From: jmersinger
Ashwini,
Not that I know of in the same layoutset...what you can do is create two layoutsets...one
portrait, one landscape...then in the print program call each one individually.
jjm
-----Reply Message-----
Subject: RE: Orientations in SAPSCRIPT
From: Ralph Klassen
Each form may only have a single orientation but you can create two forms and include
them in the same spool output.
In your ABAP program:
1. call function 'OPEN_FORM', don't pass a value in 'FORM'
2. call function 'START_FORM', include parameter 'FORM' passing the name of your
first form
3. call function 'WRITE_FORM' as normal to output each element
4. call function 'END_FORM'
5. call function 'START_FORM', include parameter 'FORM' passing the name of your
second form
6. call function 'WRITE_FORM' as normal to output each element
7. call function 'END_FORM'
8. call function 'CLOSE_FORM'
Repeat the 'START_FORM' ... 'END_FORM' sequence as required.
I have not tried using page numbers with this technique, I suspect that each form will
restart at 1.
Regards,
Ralph Klassen Sylogist
-----End of Reply Message-----
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Protect...Endprotect
-----Original Message-----
Subject: Protect...Endprotect
Hi,
Can anyone share what's a PROTECT...ENDPROTECT in
SAPScript form?
Thanks.
-----Reply Message-----
Subject: RE: Protect...Endprotect
hello!
While using Scripts, if u don't want to break a
paragraph text which aparts to another page
i.e. if u wanna display the paragraph with out
breaking in between two pages, u have to use
protect...endprotect.
all the best!
regards
-----End of Message-----
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Retrieving data without modifying the original called
program
*
* Retrieving data without modifying the original called program
*
* Put this script code in your sapscripts
* /: PERFORM GET_BARCODE IN PROGRAM ZSCRIPTPERFORM
* /: USING &PAGE&
* /: USING &NEXTPAGE&
* /: CHANGING &BARCODE&
* /: ENDPERFORM
* / &BARCODE&
*
* Submitted by : SAP Basis, ABAP Programming and Other IMG Stuff
* http://www.sap-img.com
*
REPORT ZSCRIPTPERFORM.
FORM GET_BARCODE TABLES IN_PAR STRUCTURE ITCSY
OUT_PAR STRUCTURE ITCSY.
DATA: PAGNUM LIKE SY-TABIX, "page number
NEXTPAGE LIKE SY-TABIX. "number of next page
READ TABLE IN_PAR WITH KEY 'PAGE'.
CHECK SY-SUBRC = 0.
PAGNUM = IN_PAR-VALUE.
READ TABLE IN_PAR WITH KEY 'NEXTPAGE'.
CHECK SY-SUBRC = 0.
NEXTPAGE = IN_PAR-VALUE.
READ TABLE OUT_PAR WITH KEY 'BARCODE'.
CHECK SY-SUBRC = 0.
IF PAGNUM = 1.
OUT_PAR-VALUE = '|'. "First page
ELSE.
OUT_PAR-VALUE = '||'. "Next page
ENDIF.
IF NEXTPAGE = 0.
OUT_PAR-VALUE+2 = 'L'. "Flag: last page
ENDIF.
MODIFY OUT_PAR INDEX SY-TABIX.
ENDFORM.
*-- End of Program
SAPscripts How to calculate Totals and Subtotals
I have some doubs in BDC and SMART FORMS. I want to change the material
number using the transaction code MM02 through BDC.
In scripts and smartforms how to calculate totals and subtotals?
To calculate totals and sub totals in sap scripts you have to use subroutines.
Say if you have to add the unit price (KOMVD-KBERT) then in the main window
whereever tat value is picked write this routine
/: DEFINE &TOT_PRICE&
/: PERFORM F_GET_PRICE IN PROGRAM <subroutine prog name> /:USING
&KOMVD-KBERT& /:CHANGING &TOT_PRICE& /:ENDPERFORM
Then write the variable where ever you want it to be printed (mostly it will be in footer
window)
Then create subroutine pool program and you have to write the code.
FORM F_GET_PRICE tables int_cond structure itcsy
outt_cond structure itcsy. data : value type kbert.
statics value1 type kbert.
Read int_cond table index 1.
value = int_cond-value.
value1 = value1 + value.
Read outt_cond table index 1.
outt_cond-value = value1.
Modify outt_cond index 1.
ENDFORM.
I have given a rough outline, please be aware of the variable conversions as Int_cond-
value and outt_cond-value are characters.
SAPscripts Tips by: Raj
Fast Links:
Get help for your ABAP problems
Do you have a ABAP Question?
SAP Books
SAP Certification, Functional, Basis Administration and ABAP Programming Reference
Books
SAP Scripts Tips
SAP Sapscripts Tips and Tricks
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
SAPScripts - Developing SAPScript in different
languages
Developing SAPScript in different languages
You can goto transaction SE63 and translate the scripts into different languages.
In SE63, click Translation -> Long Texts -> Sapscripts -> Forms
Those language you can convert to have already been pre-installed in the system.
SE63 is the best way to translate since it offers check options.
However, it does not mean that it is 100% full proof that everything is correct.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Certification, Functional, System Administration and ABAP Programming
Reference Books
How to convert Sapscript spools request to PDF?
SAP have created a standard program RSTXPDFT4 to convert your Sapscripts spools
into a PDF format.
Specify the spool number and you will be able to download the sapscripts spool into your
local harddisk.
It look exactly like what you see during a spool display.
Please note that it is not restricted to sapsciprts spool only. Any reports in the spool can
be converted using the program 'RSTXPDFT4'.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Certification, Functional, System Administration and ABAP Programming
Reference Books
How to Upload graphics (IMAGE) to your Sapscript?
Command in your Sapscript
/: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E
These are the steps to be followed for uploading graphics in R/3 system
1. First save the file as BMP
2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and
make it Zoom as 100% and save as *.TIFF
3. Open SE38 and execute program RSTXLDMC
4. Give your TIFF file path name
5. Select Bcol (for Color)
6. TEXT ID will be ZHEX-MACRO-*.
7. Inplace of * write your own logo name (ZCOMPANYLOGO)
8. Execute the program
9. Now Goto SE71 create your ZFORM
10. Create logo window
11. Goto text element of logo window
or
In 4.6x :-
1. Goto SE71 Change the mode to GRAPHICAL
2. Choose the Graph Tabstrips
3. Now type in some name for the LOGO WINDOW
4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP
5. The code will be written automatically. You just need to drag and drop wherever you
want
the graphics to be.
Please note that in 4.6c onwards, you can also used Windows Bitmap file ( .BMP).
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Certification, Functional, Basis Administration and ABAP Programming
Reference Books
Import/Export SapScript form from PC file
How do you backup sapscript layout sets? Can you download and upload? How?
Use ABAP program: RSTXSCRP
It will download and upload your sapscripts as a text file in your local harddisk.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Functional, Basis and ABAP Programming Reference Books
Picture doesn't show in Print Preview
You have uploaded the picture as .TIF in Sap using ABAP RSTXLDMC and have also
add the statement
/: INCLUDE ZHEX-SAMPLE-PICTURE OBJECT TEXT ID ST LANGUAGE EN
in your SapScript but the problem is that in print preview it's not displaying the picture.
It is normal that the picture doesn't show in print preview and you will be able to see the
object only after printing.
Don't let this bother you as long as the picture is shown on the hardcopy printout.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Functional, Basis and ABAP Programming Reference Books
Delete Load program for SAPScript
Occassionally, when you make frequent changes to your SAPScript, the system can get
out of sync.
When you view the form, the old data get display without your changes.
This can be fixed by deleting the SAPScript LOAD with program RSTXDELL.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
Details information about SAP Barcodes
A barcode solution consists of the following:
- a barcode printer
- a barcode reader
- a mobile data collection application/program
A barcode label is a special symbology to represent human readable information such as
a material number or batch number
in machine readable format.
There are different symbologies for different applications and different industries.
Luckily, you need not worry to much about that as the logistics supply chain has mostly
standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support
and which SAP support natively in it's printing protocols.
You can print barcodes from SAP by modifying an existing output form.
Behind every output form is a print program that collects all the data and then pass it to
the form. The form contains the layout as well as the font, line and paragraph formats.
These forms are designed using SAPScript (a very easy but frustratingly simplistic form
format language) or SmartForms that is more of a graphical form design tool.
Barcodes are nothing more than a font definition and is part of the style sheet associated
with a particular SAPScript form. The most important aspect is to place a parameter in
the line of the form that points to the data element that you want to represent as barcode
on the form, i.e. material number. Next you need to set the font for that parameter value
to one of the supported barcode symbologies.
The next part of the equation can be a bit tricky as you will need to get a printer to print
that barcode font. Regular laser printers does not normally print barcode fonts, only
specialized industrial printers that is specifically designed to support that protocol and
that uses specialized label media and heat transfer (resin) ribbon to create the sharp image
required for barcodes.
Not to fear though, there are two ways to get around this:
- You can have your IT department do some research -
most laser printers can accept a font cartridge/dimm chip (similar to computer memory),
called a BarDIMM that will allow a laser printer to support the printing of barcodes.
- Secondly, you can buy software that you can upload in your SAP print Server that will
convert the barcode symbology as an image that will print on a regular laser printer. I
found that this option results in less sharper barcodes. This option is really if you need to
convert a large quantity of printers (>10) to support barcodes.
Now you have a barcode printed - what next?
Well there are two options, depending on your business requirements:
- You can use an existing SAP transaction on a regular workstation and get a barcode
wedge reader to hook up between the keyboard and the PC. These wedge readers comes
in a wand or scanner format. There are even wireless wedge scanners available that
allows you to roam a few yards from the workstation to scan a label. This approach is
mostly used where you want to prevent human errors in typing in long material, batch or
serial numbers in receiving or issuing of material. The problem is that it's just replacing
the keyboard input and you are basically locked down in one location and have to bring
all the material to that location to process.
- Another solution is to use SAPConsole transactions
or write your own ABAP Dialog programs that will fit onto a barcode enabled wireless
handheld terminal and that will follow the business logic as executed on the shop floor.
These programs are highly complex exercises in industrial engineering and ergonomics
because of the limited screen sizes and limited ability to accept keyboard input. The user
is instructed step-by-step and only scan and push F-keys to interact with the SAP system.
Scan, scan, beep, beep, enter - highly automated.
Content Author: Ravikumar Kandikonda
Do you have a ABAP Question?
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Certification, Functional, Basis Administration and ABAP Programming
Reference Books
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SapScript Question
1) How do you backup script layout sets?
2) What type of variables normally used in script to o/p data?
3) How do you use tabsets in layouts?
1) Use this Std program RSTXSCRP.
1) First Export to Presentation file(.doc).
2) Whenever you need that Export into SAP.
2) Normally we call them as Program symbols. Those are defined in Driver program.
We can use in Script as for exp. &itab-matnr&
Other variables ---System symbols : ex &page&
---Std symbols :
---Text symbols :We define them in script editor itself.
Ex : /: Define &mysymbol& = 'XX'
3) We can control the tab feed in a paragraph with tab positions. The tab stops us define
in the paragraph format replace the tab spacing we defined in the header data of the form.
However, this depends on the extent to which we have defined tab stops in the paragraph
format. If there are fewer tabs in the paragraph formats than in the header data, the tab
stops of the header data are used for the rest of the line.
SAPscripts Tips by : Venkat O
Q: We get the total number of pages as expected by using 'SAPSCRIPT-
FORMPAGES' in a duplex layout. In our case duplex case is always 'Terms &
Conditions'. We do not want the number of pages as in duplex printing. What is the
best possible solution?
A: On the Terms & Conditions page, Change the Page counter mode to 'HOLD' to keep
the page counter from incrementing when you print the Term & Conditions.
Q: Can I Print a logo on an Invoice?
A: Save a Logo using Paintshop Pro or Corel Draw as Tiff file. Use RSTXLDMC to
convert the logo to standard text in SapScript. When the program is executed, the path
and file name have to be correctly specified.
Process could be like the following:
Run RSTXLDMC
Enter file name C:MAILCOMPLOGO.TIF
Resolution for Tiff file
Absolute X-position
Absolute Y-position
Absolute positioning
Reserved height
Shift to right
UOM = CM
Text title
Line width for text = 132
Text name ZHEX-MACRO-COMPLOGO
Text ID ST
Text language = E
Postscript scaling
Width & Height according to PS scaling
Number of Tiff gray levels (2,4,9) 2
Then Create a new window 'COMP' with attributes;
Window COMP description Company Logo
Window type CONST
Left margin 7.00 CH window width 10.00 CH
Upper margin LN window height 8.00 LN
Finally in the text element , mention
/: INCLUDE 'ZHEX-MACRO-COMPLOGO' OBJECT TEXT ID ST LANGUAGE 'E'.
Please note that if object name is not indicated as 'ZHEX...', the logo may not be printed!
You will not be able to see the logo in a test print. The same will be printed in actual
printout.
If you are using two logos in the same layout, the names of the logos should be unique.
Say 'ZHEX-MACRO-LOGO1' and 'ZHEX-MACRO-LOGO2'. Else all the information
will be overwritten.
If the logo is not EXACTLY TIFF 6.0, the same will not be printed.
See OSS notes 5995, 18045, 39031 for some inputs.
SAPscripts Tips by : Shivanand Patlolla
Fast Links:
Get help for your ABAP problems
Do you have a ABAP Question?
SAP Books
SAP Certification, Functional, Basis Administration and ABAP Programming Reference
Books
SAP Scripts Tips
SAP Sapscripts Tips and Tricks
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Questions on PO SapScripts MEDRUCK
1. When do you modified MEDRUCK? ( IF I SAID I HAVE WORKED ON
SCRIPTS).
Generally, we modify existing sap scripts provided by SAP rather than creating one.
Unless you have to do something new for your client like Labels or Packaging card, etc.,
MEDRUCK is the form for PO.
2. I want to know the procedure to create a purchase order using MEDRUCK.
You don't create a PO using MEDRUCK. MEDRUCK is the form used to print a PO that
has been created.
3. What are the usual changes to be done on MEDRUCK?
Goto SE71, there is an option in Utilities as COPY ffrom Source client (000). Copy the
from MEDRUCK into a Zname form. The common changes wud b inserting a logo,
using Std text for Terms and Conditions, alignment of windows as per client requirement,
get xtra data if client is asking for somethign more.
4. How can I access my data from DB to SCRIPTS?
There are structures used in Scripts which hold the data entered by the user. These
structures are used to get data from Database.
5. Please send me the one examples in full length.
Look at MEDRUCK form and it would have a print program. you can find in tcode
NACE.
SAPscripts Tips by : Raj
Fast Links:
Other SapScipts Question
SapScript Question
Get help for your ABAP problems
Do you have a ABAP Question?
SAP Books
SAP Certification, Functional, Basis Administration and ABAP Programming Reference
Books
SAP Scripts Tips
SAP Sapscripts Tips and Tricks
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
A Sample SAP Scripts Reports
Author: Mona
CALL FUNCTION 'OPEN_FORM'
* EXPORTING
* APPLICATION = 'TX'
* ARCHIVE_INDEX =
* ARCHIVE_PARAMS =
* DEVICE = 'PRINTER'
* DIALOG = 'X'
* FORM = 'ZSCRIPT1'
* LANGUAGE = SY-LANGU
* OPTIONS =
* MAIL_SENDER =
* MAIL_RECIPIENT =
* MAIL_APPL_OBJECT =
* RAW_DATA_INTERFACE = '*'
* SPONUMIV =
* IMPORTING
* LANGUAGE =
* NEW_ARCHIVE_PARAMS =
* RESULT =
EXCEPTIONS
CANCELED = 1
DEVICE = 2
FORM = 3
OPTIONS = 4
UNCLOSED = 5
MAIL_OPTIONS = 6
ARCHIVE_ERROR = 7
INVALID_FAX_NUMBER = 8
MORE_PARAMS_NEEDED_IN_BATCH = 9
SPOOL_ERROR = 10
CODEPAGE = 11
OTHERS = 12
.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'START_FORM'
EXPORTING
* ARCHIVE_INDEX =
FORM = 'ZFORM1'
* LANGUAGE = ' '
* STARTPAGE = 'X'
PROGRAM = 'ZSCRIPT1'
* MAIL_APPL_OBJECT =
* IMPORTING
* LANGUAGE =
* EXCEPTIONS
* FORM = 1
* FORMAT = 2
* UNENDED = 3
* UNOPENED = 4
* UNUSED = 5
* SPOOL_ERROR = 6
* CODEPAGE = 7
* OTHERS = 8
.
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'WRITE_FORM'
EXPORTING
* ELEMENT = ' '
* FUNCTION = 'SET'
* TYPE = 'BODY'
WINDOW = 'HEADER'
* IMPORTING
* PENDING_LINES =
EXCEPTIONS
ELEMENT = 1
FUNCTION = 2
TYPE = 3
UNOPENED = 4
UNSTARTED = 5
WINDOW = 6
BAD_PAGEFORMAT_FOR_PRINT = 7
SPOOL_ERROR = 8
OTHERS = 9
.
IF SY-SUBRC <> 0.
write:/ 'ERROR IN HEADER'.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'WRITE_FORM'
EXPORTING
* ELEMENT = ' '
* FUNCTION = 'SET'
* TYPE = 'BODY'
WINDOW = 'MAIN'
* IMPORTING
* PENDING_LINES =
EXCEPTIONS
ELEMENT = 1
FUNCTION = 2
TYPE = 3
UNOPENED = 4
UNSTARTED = 5
WINDOW = 6
BAD_PAGEFORMAT_FOR_PRINT = 7
SPOOL_ERROR = 8
OTHERS = 9
.
IF SY-SUBRC <> 0.
write:/ 'ERROR IN HEADER'.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'WRITE_FORM'
EXPORTING
* ELEMENT = ' '
* FUNCTION = 'SET'
* TYPE = 'BODY'
WINDOW = 'FOOTER'
* IMPORTING
* PENDING_LINES =
EXCEPTIONS
ELEMENT = 1
FUNCTION = 2
TYPE = 3
UNOPENED = 4
UNSTARTED = 5
WINDOW = 6
BAD_PAGEFORMAT_FOR_PRINT = 7
SPOOL_ERROR = 8
OTHERS = 9
.
IF SY-SUBRC <> 0.
write:/ 'ERROR IN HEADER'.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'END_FORM'
* IMPORTING
* RESULT =
* EXCEPTIONS
* UNOPENED = 1
* BAD_PAGEFORMAT_FOR_PRINT = 2
* SPOOL_ERROR = 3
* CODEPAGE = 4
* OTHERS = 5
.
CALL FUNCTION 'CLOSE_FORM'
* IMPORTING
* RESULT =
* RDI_RESULT =
* TABLES
* OTFDATA =
* EXCEPTIONS
* UNOPENED = 1
* BAD_PAGEFORMAT_FOR_PRINT = 2
* SEND_ERROR = 3
* SPOOL_ERROR = 4
* CODEPAGE = 5
* OTHERS = 6
.
Can you explain the difference between
1.open_form and Start form
2.end_form and Close_form.
whether all 4 modules are required in the driver pgm .
Open_form => It assign the form and printer, It should be first.
Start_form => It start Writing mode. You can use write_form in loop to write more than
one lines befor End_form.
End_form => It end writing mode of current page and will require to start again through
Start_form.
Close_form=> it end the Form. After this you can not start again for created file.
Rajiv singh.
Fast Links:
Get help for your ABAP problems
Do you have a ABAP Question?
ABAP Books
ABAP Certification, BAPI, Java, Web Programming, Smart Forms, Sapscripts Reference
Books
SAP Scripts Tips
SAP Sapscripts Tips and Tricks
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Smart Forms Goodies Stuff
Practical and helpful SAP SMARTFORMS Stuff to assist those who seek to know more
about the SAP Smartforms. Companies use SAP Smartforms for form printing such as
checks, labels and barcode.
SAP Smartforms Reference Books
SAP Smart Forms
Introduction
Introduction to SAP SmartForms
Advantages of SAP Smart Forms
A Simple Smartform Tutorial
SAPscripts and SmartForms
Difference with SMARTFORMS vs. SapScript
FAQ on Migrating SAPscript to SmartForms
Conversion of SAPSCRIPT to SMARTFORMS
General
SmartForms System Fields
Example Forms Available in Standard SAP R/3
A Sample Program Calling Smartforms
Smart Forms FAQ
Smart forms Frequently Asked Questions
Smartforms FAQ Part Two
Display a contents of a table on SmartForm with LOOP
Barcodes
Details information about SAP Barcodes
SAP ABAP Forum at the convenient of your mail box
Exchange ABAP related problems/solutions, program, tips, ideas with other ABAP peers
from around the globe.
Note: An Auto Free ABAP Tips Windows Help File will be send to you upon Joining.
SAP ABAP Forum for ABAP Professional
enter email ad
Quick Links
ABAP Tips and Tricks Main Menu
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
Introduction to SAP SmartForms
What is SAP Smart Forms?
SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and
maintaining forms.
SAP Smart Forms allow you to execute simple modifications to the form and in the form
logic by using simple graphical tools; in 90% of all cases, this won't include any
programming effort. Thus, a power user without any programming knowledge can
configure forms with data from an SAP System for the relevant business processes.
To print a form, you need a program for data retrieval and a Smart Form that contains the
entire from logic. As data retrieval and form logic are separated, you must only adapt
the Smart Form if changes to the form logic are necessary. The application program
passes the data via a function module interface to the Smart Form. When activating
the Smart Form, the system automatically generates a function module. At runtime,
the system processes this function module.
You can insert static and dynamic tables. This includes line feeds in individual table cells,
triggering events for table headings and subtotals, and sorting data before output.
You can check individual nodes as well as the entire form and find any existing errors in
the tree structure. The data flow analysis checks whether all fields (variables) have a
defined value at the moment they are displayed.
SAP Smart Forms allow you to include graphics, which you can display either as part of
the form or as background graphics. You use background graphics to copy the layout of
an existing (scanned) form or to lend forms a company-specific look. During printout,
you can suppress the background graphic, if desired.
SAP Smart Forms also support postage optimizing.
Also read SAP Note No. 168368 - Smart Forms: New form tool in Release 4.6C
What Transaction to start SAP Smart Forms?
Execute transaction SMARTFORMS to start SAP Smart Forms.
Key Benefits of SAP Smart Forms:
SAP Smart Forms allows you to reduce considerably the implementation costs of
mySAP.com solutions since forms can be adjusted in minimum time.
You design a form using the graphical Form Painter and the graphical Table Painter. The
form logic is represented by a hierarchy structure (tree structure) that consists of
individual nodes, such as nodes for global settings, nodes for texts, nodes for output
tables, or nodes for graphics.
To make changes, use Drag & Drop, Copy & Paste, and select different attributes.
These actions do not include writing of coding lines or using a Script language.
Using your form description maintained in the Form Builder, Smart Forms generates a
function module that encapsulates layout, content and form logic. So you do not need
a group of function modules to print a form, but only one.
For Web publishing, the system provides a generated XML output of the processed
form.
Smart Forms provides a data stream called XML for Smart Forms (XSF) to allow the use
of 3rd party printing tools. XSF passes form content from R/3 to an external product
without passing any layout information about the Smart Form.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Certification, ABAP Programming, Functional and Basis Component
Reference Books
Advantages of SAP Smart Forms
SAP Smart Forms have the following advantages:
1. The adaption of forms is supported to a large extent by graphic tools for layout and
logic, so that no programming knowledge is necessary (at least 90% of all adjustments).
Therefore, power user forms can also make configurations for your business processes
with data from an SAP system. Consultants are only required in special cases.
2. Displaying table structures (dynamic framing of texts)
3. Output of background graphics, for form design in particular the use of templates
which were scanned.
4. Colored output of texts
5. User-friendly and integrated Form Painter for the graphical design of forms
6. Graphical Table Painter for drawing tables
7. Reusing Font and paragraph formats in forms (Smart Styles)
8. Data interface in XML format (XML for Smart Forms, in short XSF)
9. Form translation is supported by standard translation tools
10. Flexible reuse of text modules
11. HTML output of forms (Basis release 6.10)
12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-
Release 6.10)
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Functional, Basis Administration and ABAP Programming Reference Books
Contributed by : SAP ABAP/4 Programming, Basis Administration, Configuration Hints
and Tips
A Simple Smartform Tutorial
SAP Smartforms can be used for creating and maintaining forms for mass printing in
SAP Systems. The output medium for Smartforms support printer, fax, e-mail, or the
Internet (by using the generated XML output).
According to SAP, you need neither have any programming knowledge nor use a Script
language to adapt standard forms. However, basic ABAP programming skills are
required only in special cases (for example, to call a function module you created or for
complex and extensive conditions).
1. Create a new smartforms
Transaction code SMARTFORMS
Create new smartforms call ZSMART
2. Define looping process for internal table
Pages and windows
First Page -> Header Window (Cursor at First Page then click Edit -> Node ->
Create)
Here, you can specify your title and page numbering
&SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
Main windows -> TABLE -> DATA
In the Loop section, tick Internal table and fill in
ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
3. Define table in smartforms
Global settings :
Form interface
Variable name Type assignment Reference type
ITAB1 TYPE Table Structure
Global definitions
Variable name Type assignment Reference type
ITAB2 TYPE Table Structure
4. To display the data in the form
Make used of the Table Painter and declare the Line Type in Tabstrips Table
e.g. HD_GEN for printing header details,
IT_GEN for printing data details.
You have to specify the Line Type in your Text elements in the Tabstrips Output
options.
Tick the New Line and specify the Line Type for outputting the data.
Declare your output fields in Text elements
Tabstrips - Output Options
For different fonts use this Style : IDWTCERTSTYLE
For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
5. Calling SMARTFORMS from your ABAP program
REPORT ZSMARTFORM.
* Calling SMARTFORMS from your ABAP program.
* Collecting all the table data in your program, and pass once to SMARTFORMS
* SMARTFORMS
* Declare your table type in :-
* Global Settings -> Form Interface
* Global Definintions -> Global Data
* Main Window -> Table -> DATA
*
* Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
* http://sapr3.tripod.com
*
TABLES: MKPF.
DATA: FM_NAME TYPE RS38L_FNAM.
DATA: BEGIN OF INT_MKPF OCCURS 0.
INCLUDE STRUCTURE MKPF.
DATA: END OF INT_MKPF.
SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
MOVE-CORRESPONDING MKPF TO INT_MKPF.
APPEND INT_MKPF.
ENDSELECT.
* At the end of your program.
* Passing data to SMARTFORMS
call function 'SSF_FUNCTION_MODULE_NAME'
exporting
formname = 'ZSMARTFORM'
* VARIANT = ' '
* DIRECT_CALL = ' '
IMPORTING
FM_NAME = FM_NAME
EXCEPTIONS
NO_FORM = 1
NO_FUNCTION_MODULE = 2
OTHERS = 3.
if sy-subrc <> 0.
WRITE: / 'ERROR 1'.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
call function FM_NAME
* EXPORTING
* ARCHIVE_INDEX =
* ARCHIVE_INDEX_TAB =
* ARCHIVE_PARAMETERS =
* CONTROL_PARAMETERS =
* MAIL_APPL_OBJ =
* MAIL_RECIPIENT =
* MAIL_SENDER =
* OUTPUT_OPTIONS =
* USER_SETTINGS = 'X'
* IMPORTING
* DOCUMENT_OUTPUT_INFO =
* JOB_OUTPUT_INFO =
* JOB_OUTPUT_OPTIONS =
TABLES
GS_MKPF = INT_MKPF
EXCEPTIONS
FORMATTING_ERROR = 1
INTERNAL_ERROR = 2
SEND_ERROR = 3
USER_CANCELED = 4
OTHERS = 5.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
Additional Fonts for your SMARTFORMS
You can create additional fonts and style with transaction SMARTSTYLES
This can then be define in the paragraph and character formats, which you can then be
assign to texts and fields in the Smart Form.
The character formats includes effects such as superscript, subscript, barcode and font
attributes.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Functional, Basis Administration and ABAP Programming Reference Books
Difference with SMARTFORMS vs. SapScript(SE71)
The Following are the differences :-
a) Multiple page formats are possible in smartforms which is not the case in SAPScripts
b) It is possible to have a smartform without a main window .
c) Labels cannot be created in smartforms.
d) Routines can be written in smartforms tool.
e) Smartforms generates a function module when activated.
Contributed by : SAP ABAP/4 Programming, Basis Administration, Configuration Hints
and Tips
f) Unlike sapscripts (RSTXSCRP), you cannot upload/download Smartform to your
local harddisk.
It was said that it was provided in CRM 3.0 version, but not available in R/3. You can
download smartforms into Local PC in a XML format. In the same way you can upload
this XML format into Smartform. From the smartform editor itself you can call
download option, if you are working in CRM 3.0 environment.
In R3 also, you can download into XML format. However, it's not sure about uploading.
Refer to the program 'SF_XSF_DEMO'.
In 4.7 Enterprise, other have seen this utlity which is completey missing in 4.6c. There is
functionality to downlaod a complete form or only a particular node. (Utilities ->
Download form). It will create a XML file and save it in the hard disk.
For others, if you want to download/upload the Smartforms source, you will need
the help from the Basis people. What you can do is to create a Transport and then
FTP down to your local harddisk. When you need the Smartform source in
another system, you have FTP up the Smartforms file back to the SAP server.
Finally, the Basis team, will tp it into your system.
g) The protect and endprotect command in sapscript doesn't work with smartforms.
For example on a invoice: First data of position no 80. is printed on page one, other data
of position no 80 is printed on page 2. And there's nothing you can do about it. Actually,
there is something you can do about it. By using a folder node and checking the
'protect' checkbox, everything in that folder will be page protected.
Last review : 30 August 2003
Do you have a ABAP Question?
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
FAQ on Migrating SAPscript to SmartForms
Is it possible to migrate a SAPscript form to a Smart Form?
Smart Forms provides a migration tool for this purpose which migrates layout and texts
of a SAPscript form to a Smart Form. It does not migrate SAPscript form logic of the
print program. Using Smart Forms, this logic is described by the tree structure of the
Form Builder. The effort involved in migrating it depends on the complexity of the print
program.
Which Basis Release do I need to use SAP Smart Forms?
SAP Smart Forms is available as of R/3 Basis Release 4.6C.
I have heard that Smart Forms replaces SAPscript. What does "replace" mean?
It does not mean that SAPscript is removed from the Basis shipment. Even as of Basis
Release 4.6C, SAPscript remains part of the SAP standard and there are no plans to
remove it. Since Smart Forms is currently, and will continue to be, the tool for form
maintenance for mySAP.com solutions, our further development efforts will focus on
Smart Forms, not on SAPscript.
Do we have to migrate all SAPscript forms to Smart Forms?
There is no point in migrating all SAPscript forms already in use. Since SAPscript can
still be used and will be available in the future, there is no need to. If you plan to migrate
a SAPscript form, it is recommended that you check whether benefit is worth the effort
involved.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
Conversion of SAPSCRIPT to SMARTFORMS
SAP provides a conversion for SAPscript documents to SMARTforms.
This is basically a function module, called FB_MIGRATE_FORM. You can start this
function module by hand (via SE37), or create a small ABAP which migrates all
SAPscript forms automatically.
You can also do this one-by-one in transaction SMARTFORMS, under
Utilities -> Migrate SAPscript form.
You could also write a small batch program calling transaction SMARTFORMS and
running the migration tool.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
SmartForms System Fields
Within a form you can use the field string SFSY with its system fields. During form
processing the system replaces these fields with the corresponding values. The field
values come from the SAP System or are results of the processing.
System fields of Smart Forms
&SFSY-DATE&
Displays the date. You determine the display format in the user master record.
&SFSY-TIME&
Displays the time of day in the form HH:MM:SS.
&SFSY-PAGE&
Inserts the number of the current print page into the text. You determine the format of
the page number (for example, Arabic, numeric) in the page node.
&SFSY-FORMPAGES&
Displays the total number of pages for the currently processed form. This allows you to
include texts such as'Page x of y' into your output.
&SFSY-JOBPAGES&
Contains the total page number of all forms in the currently processed print request.
&SFSY-WINDOWNAME&
Contains the name of the current window (string in the Window field)
&SFSY-PAGENAME&
Contains the name of the current page (string in the Page field)
&SFSY-PAGEBREAK&
Is set to 'X' after a page break (either automatic [Page 7] or command-controlled [Page
46])
&SFSY-MAINEND&
Is set as soon as processing of the main window on the current page ends
&SFSY-EXCEPTION&
Contains the name of the raised exception. You must trigger your own exceptions, which
you defined in the form interface, using the user_exception macro (syntax:
user_exception <exception name >).
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
Example Forms Available in Standard SAP R/3
SF_EXAMPLE_01
Simple example; invoice with table output of flight booking for one customer
SF_EXAMPLE_02
Similar to SF_EXAMPLE_01 but with subtotals
SF_EXAMPLE_03
Similar to SF_EXAMPLE_02, whereby several customers are selected in the application
program; the form is called for each customer and all form outputs are included in an
output request
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
A Sample Program Calling Smartforms
With Compliments by: Ambekar, Abhijeet
You should use 'SSF_FUNCTION_MODULE_NAME' & call function fm_name in your
program & not others.
*&---------------------------------------------------------------------
*
*& Report ZTACA_DRIVER_SMARTFORM
*
*&
*
*&---------------------------------------------------------------------
*
*&
*
*&
*
*&---------------------------------------------------------------------
*
REPORT ZTACA_DRIVER_SMARTFORM .
Tables : sflight.
Data : fm_name TYPE rs38l_fnam.
*data : Begin of it_flttab occurs 0,
* carrid type sflight-carrid,
* connid type sflight-connid,
* fldate type sflight-fldate,
* seatsmax type sflight-seatsmax,
* seatsocc type sflight-seatsocc,
* End of it_flttab.
data : it_flttab like table of sflight.
Data : g_salary type i .
* it_flttab type standard table of ty_flt.
g_salary = 1000.
select carrid connid fldate seatsmax seatsocc from sflight into
corresponding fields of table it_flttab.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = 'ZTACA_SMFORM2'
* VARIANT = ' '
* DIRECT_CALL = ' '
IMPORTING
FM_NAME = fm_name
EXCEPTIONS
NO_FORM = 1
NO_FUNCTION_MODULE = 2
OTHERS = 3
.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
call function fm_name
Exporting
salary = g_salary
TABLES
it_flttab = it_flttab
EXCEPTIONS
FORMATTING_ERROR = 1
INTERNAL_ERROR = 2
SEND_ERROR = 3
USER_CANCELED = 4
OTHERS = 5 .
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Fast Links:
Get help for your ABAP problems
Do you have a ABAP Question?
ABAP Books
ABAP Certification, BAPI, Java, Web Programming, Smart Forms, Sapscripts Reference
Books
ABAP Tips
ABAP Forum for Discussion and Samples Program Codes for Abapers
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP ABAP Programming, Functional and Basis Component Reference Books
Smart forms Frequently Asked Questions
Forcing a page break within table loop
Create a loop around the table. Put a Command node before the table in the loop that
forces a NEWPAGE on whatever condition you want. Then only loop through a subset of
the internal table (based on the conditions in the Command node) of the elements in the
Table node.
Font style and Font size
Goto Transaction SMARTSTYLES.
There you can create Paragraph formats etc just like in sapscript.
Then in your window under OUTPUT OPTIONS you include this SMARTSTYLE and
use the Paragraph and character formats.
Line in Smartform
Either you can use a window that takes up the width of your page and only has a height
of 1 mm.
Then you put a frame around it (in window output options).
Thus you have drawn a box but it looks like a line.
Or you can just draw "__" accross the page and play with the fonts so that it joins each
UNDER_SCORE.
Difference between 'forminterface' and 'global definitions' in global settings of
smart forms
The Difference is as follows.
To put it very simply:
Form Interface is where you declare what must be passed in and out of the smartform (in
from the print program to the smartform and out from the smartform to the print
program).
Global defs. is where you declare data to be used within the smartform on a global
scope.
ie: anything you declare here can be used in any other node in the form.
Smartforms function module name
Once you have activated the smartform, go to the environment -> function module name.
There you can get the name of funtion module name.
The key thing is the program that calls it. for instance, the invoice SMARTFORM
LB_BIL_INVOICE is ran by the program RLB_INVOICE.
This program uses another FM to determine the name of the FM to use itself. The key
thing is that when it calls this FM (using a variable to store the actual name), that the
parameters match the paramters in your smartform.
Another thing to note is that the FM name will change wherever the SF is transported to.
So you need to use the FM to determine the name of the SF.
Here is the code that can be use to determine the internal name of the function module:
Code:
if sf_label(1) <> '/'. " need to resolve by name
move sf_label to externalname.
call function 'SSF_FUNCTION_MODULE_NAME'
exporting
formname = externalname
importing
fm_name = internalname
exceptions
no_form = 1
no_function_module = 2
others = 3.
if sy-subrc <> 0.
message 'e427'.
endif.
move internalname to sf_label.
endif.
It checks to see if the sf_label starts with a '/', which is how the internal names start. if it
does, the name has already been converted. If not, it calls the FM and converts the name.
You would then CALL FUNCTION sf_label.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Certification, ABAP Programming, Functional and Basis Component
Reference Books
Smartforms FAQ Part Two
Smartforms output difference
Problem with Smartforms: in a certain form for two differently configured printers,
there seem to be a difference in the output of characters per inch (the distance
between characters which gives a layout problem - text in two lines instead of one.
It happens when the two printers having different Printer Controls' if you go to SPAD
Menu (Spool Administrator Menu) you can see the difference in the Printer Control and
if you make the Printer control setting for both the printers as same. then it will be ok.
and also u have to check what is the device type used for both the output devices.
SmartForms Output to PDF
There is a way to download smartform in PDF format.
Please do the following:
1. Print the smartform to the spool.
2. Note the spool number.
3. Download a PDF file (Acrobat Reader) version of the spool by running Program
RSTXPDFT4 and entering the
noted spool number.
SmartForm Doublesided printing question
Your customer wants your PO SmartForm to be able to print "Terms and
Conditinos" on the back side of each page. They don't want to purchase pre-printed
forms with the company's logo on the front and terms & conditions on the back.
Now this presents an interesting problem.
Has anyone else ever had a request like this? If for example there was a 3 page PO
to be printed, they want 3 pieces of paper, the front side of each to containe the PO
information (page 1, 2, and 3) and the back side of each piece of paper to containg
the static "Terms & Conditions" information.
Anyone have a clue how to force this out?
Easy - page FRONT lists page CONTACTS as next page and CONTACTS lists FRONT
as next page. Since CONTACTS does not contain a MAIN window, it will print the
contacts info and then continue on to FRONT for the rest of the main items. Additionally,
set print mode on FRONT to D (duplex) and set CONTACTS to 'blank' (for both resource
name and print mode - this is the only way to get to the back of the page).
Transport Smart Forms
How does one transport SMARTFORM? SE01?
How do you make sure that both, the SMARTFORM & it's function module gets
transported? Or does the FM with same name gets generated automatically in the
transported client?
A smartform is transported no differently than any other object. if it is assigned to a
development class that is atteched to a transport layer, it will be transported.
The definition is transported, and when called, the function module is regenerated.
This leads to an interetsing situation. On the new machine, it is very likely the function
module name will be different than the name on the source system. Make sure, before
you call the function module, you resolve the external name to the internal name using
the 'SSF_FUNCTION_MODULE_NAME' function module.
Typically, generate the SF, then use the pattern to being in the interface. Then change the
call function to use the name you get back from the above function module.
Smartforms: protect lines in main window.
How to protect lines in the main window from splitting between pages?
It was easy with SAPscript, but how to do it with SF's. For 4.7 version if you are using
tables, there are two options for protection against line break:
- You can protect a line type against page break.
- You can protect several table lines against page break for output in the main area.
Protection against page break for line types
- Double-click on your table node and choose the Table tab page.
- Switch to the detail view by choosing the Details pushbutton.
- Set the Protection against page break checkbox in the table for the relevant line type.
Table lines that use this line type are output on one page.
Protection against page break for several table lines
- Expand the main area of your table node in the navigation tree.
- Insert a file node for the table lines to be protected in the main area.
- If you have already created table lines in the main area, you can put the lines that you
want to protect again page break under the file using Drag&Drop. Otherwise, create the
table lines as subnodes of the file.
- Choose the Output Options tab page of the file node and set the Page Protection
option. All table lines that are in the file with the Page Protection option set are output
on one page.
In 4.6, Alternatively in a paragraph format use the Page protection attribute to determine
whether or not to display a paragraph completely on one page. Mark it if you want to
avoid that a paragraph is split up by a page break. If on the current page (only in the main
window) there is not enough space left for the paragraph, the entire paragraph appears on
the next page.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Display a contents of a table on SmartForm with LOOP
There's a DDIC Table called "Ugyfel" containing 5 rows. I'd like simply to display
all the rows on a SF's Main window.
Please follow this process to display the value from your table "Ugyfel"
1. Go with a transaction code : smartforms
2. Enter the form name like : ysmart_forms1
3. Create
4. Enter the Description for the form
5. From the left side window there will be a form interface to provide table .....
6. Go for tables option
7. ugyfel like ugyfel(ref.type)
8. Pages and window---> page1---> main window
9. Go to the form painter adjust the main window.
10. Select main window and right click --> go for create loop
11. Name: loop1, desc: display loop.
12. Internal table ktab into ktab.
13. select loop right click -> create a text
14. name : text1, desc: display text.
15. Go to change editor.
16. Write the mater what ever you want and if you want to display data from the table
write the table fields as follows:
&ktab-<field1>& &ktab-<field2>&
save & activate then execute ,, scripts will generate a function module like :
'/ibcdw/sf0000031' copy this function module and call in executable program...
For that
1. go with abap editor se38.
2. table: ugyfel.
3. parameters: test like ugyfel-<field1>.
4. data itab like ugyfel occurs 0 with header line.
5. select * from ugyfel into table itab where field1 = test1.
6. call function '/ibcdw/sf0000031'
7. tables
ktab = itab.
Save and activate the program ( ^f 3).
Now run the program ( f 8)
ALL THE BEST.
SmartForm Tips by : Maheshkumar Gattu
Fast Links:
Get help for your ABAP problems
Do you have a ABAP Question?
ABAP Books
ABAP Certification, BAPI, Java, Web Programming, Smart Forms, Sapscripts Reference
Books
ABAP Programming Tips
ABAP Forum for Discussion and Samples Program Codes for Abapers
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Find the list of SAP Transaction codes
Where I can find the list of transaction codes and their usage, I heard that there is
some table which contains all the transaction codes with their descriptions.
Listed here are the various ways you can find the list of transaction codes and their usage:
Use transaction SE11 - ABAP Dictionary:
Fill in the Database table name and click the Display button.
- TSTC table will contain all the Tcodes and
- TSTCT table will contain all the Tcodes with Texts.
Once you entered the screen, click in Top Menu - Utilities - Table contents - Display
If you want to display all the transaction code (total - 57,048) you have to change the
Fields: Maximum number of hits to 99999 (default 500).
or
Simply goto transaction SM01, although this tcode is to Lock/Unlock any transaction
code, you can also view all the tcode available in the R/3 system from here.
or
Goto transaction SE93
There are two ways where you can find the list of transaction codes in SE93.
Method 1:
You must be familiar with the starting characters strings for each of the R/3 application
modules.
Assuming you know that most Materials Management transaction codes start with MM.
In the Fields: Transaction code, type in MM* and press the function key F4
The list of transaction code starting with MM will be displayed.
Method 2:
On the Top Menu, click Utilities - Find - Execute and the first 500 transaction will be
display.
If want to display all the tcodes, make sure you remembered to change the Fields:
Maximum no. of hits right at the bottom of the screen.
Related Topics:
To get the associated data element descriptions of all the fields in a table
How to get the field descriptions of a table?
Find Related Application Transaction code using Text search
Search for SAP Basis Transaction codes
A simple method of changing the SAP Tcode Title
Changing the Title of SAP Transaction
SAP Books
SAP Certification, ABAP Programming, Functional and Basis Component Reference
Books
Error!
How to get the field descriptions of a table?
I need to get the associated data element descriptions of all the fields in a table. I
think there's a way to do that using the SELECT statement.
Can you please give me in detail, the various steps and methods to find the
corresponding SAP tables and fields for a particular transaction code, for example
(CS03).
Do the following 2 steps. Then create your ABAP program accordingly with the
SELECT statement.
1. From table DD03L, give your tablename and get all of its field names and
corresponding data element names.
2. From table DD03T, get the description of each data element you have got in step 1.
Then Use Function Module DDIF_FIELDINFO_GET
The sample program will look like this:
REPORT ZTABLEFIELDNAME.
TABLES: DFIES,
X030L.
DATA: BEGIN OF INTTAB OCCURS 100.
INCLUDE STRUCTURE DFIES.
DATA: END OF INTTAB.
PARAMETERS: TABLENM TYPE DDOBJNAME DEFAULT 'MSEG',
FIELDNM TYPE DFIES-FIELDNAME DEFAULT 'MENGE'.
call function 'DDIF_FIELDINFO_GET'
exporting
tabname = TABLENM
FIELDNAME = FIELDNM
LANGU = SY-LANGU
* LFIELDNAME = ' '
* ALL_TYPES = ' '
* IMPORTING
* X030L_WA = WATAB
* DDOBJTYPE =
* DFIES_WA =
* LINES_DESCR =
TABLES
DFIES_TAB = INTTAB
* FIXED_VALUES =
EXCEPTIONS
NOT_FOUND = 1
INTERNAL_ERROR = 2
OTHERS = 3.
if sy-subrc <> 0.
WRITE:/ 'Field name not found'.
endif.
LOOP AT INTTAB.
WRITE:/ INTTAB-TABNAME, INTTAB-FIELDNAME, INTTAB-FIELDTEXT.
ENDLOOP.
*** End of Program
OR
Step 1.
Run the transaction and click on System -> Status. Note the program name shown under
the transaction code.
Step 2.
Run SE49 and enter the program name you identified in step 1 (SAPLCSDI) and then
press enter.
This will identify the tables used, however, as you want to know the fields used as well
then you may have to resort to looking at the actual code (get a developer involved if
you're not one) using transaction SE80.
In this case the transaction CS03 is assigned to a screen with a function group so it's a
slightly tricker process, hence the need for a developers service.
For all the tables, descriptions and fields you can refer to these tables:
DD02L : ALL SAP TABLE NAMES
DD02T : DESCRIPTION OF TABLE NAMES
DD03L : FIELDS IN A TABLE.
Related Links:
Find Related Application Transaction code using Text search
Search for SAP Basis Transaction codes
A simple method of changing the SAP Tcode Title
Changing the Title of SAP Transaction
Get help for your ABAP problems
Do you have a ABAP Question?
SAP Certification, Functional, Basis Administration and ABAP Programming
Reference Books
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Basis Administration, Functional and ABAP Programming Reference Books
Search for SAP Transaction codes
You can access all the transaction codes by using the transaction code 'SDMO'.
This is the transaction code for the Dynamic Menu.
Based on your search string, you can get all related transaction codes for all the SAP
application modules.
For e.g. the Search text for ADMIN returns the following results:
----------------------------------------------------------
|Tcode|Transaktionstext |
----------------------------------------------------------
|ADOK |AM: System Administration Guide |
|BALE |Area Menu for Administration |
|BDMO |ALE CCMS Group Administration |
|CATSX|Time Sheet Admin.: Initial Screen |
|CICY |CTI Administration |
|CJV6 |Maintenance: Version administration |
|CN84 |PS: Archiving project - admin. |
|COA4 |PP: Archiving order - administration |
|CSADM|Content Server Administration |
|FC_BW|Administrator Workbench |
|FDTA |TemSe/REGUT Data Administration |
|FDTT |Treasury Data Medium Administration |
|FO86 |Change active admin.contract fees |
|FO8E |Create admin.contract event |
|FO8F |Change admin.contract event |
|FO8G |Display admin.contract event |
|FO8H |Admin.costs acct sttlmnt simulation |
|FOART|REsearch: Administration Web-User |
|HRCMP|Compensation Administration |
|HRCMP|Budget Administration: Display |
|HRCMP|Budget Administration: Change |
|IM_AR|Admin. of App. Request Archives |
|KA18 |Archive admin: assess., distr., ... |
|KE72 |Archive Administration: Line Items |
|KE73 |Archive Administration: Totals Recs |
|KPRO |KPRO Administration |
|OAAD |ArchiveLink Administration Documents |
|OG00 |Personnel Administration Customizing |
|OG01 |Personnel Administration Customizing |
|OMSM |CS MM Set Up Administrative Data |
|OOCM_|Compensation Administration Settings |
|OOML |Room Administration Mail Connection |
|OOPC |Administration: Personnel No. Check |
|OY22 |Create subadministrator Customizing |
|OYEA |IDoc administration |
|PA97 |Compensation administration - matrix |
|PA98 |Compensation Administration |
|PA99 |Compensation Admin. - Release Report |
|PACA |PF administration |
|PAT1 |Personnel Administration infosystem |
|PC00_|CBS survey salary administrations |
|PC00_|Tax Certificates - Administration 16 |
|PP26 |Plan Scenario Administration |
|PP2D |Administer Payroll Results |
|PSO5 |PD: Administration Tools |
|PUCA |PC administration for PF |
|PVSEA|Administer Search Engine |
|QD25 |Archiving Notifications: Admin. |
|S002 |Menu Administration |
|SA02 |Academic title (cent. addr. admin.) |
|SA04 |Name prefixes (centr. addr. admin.) |
|SA05 |Name suffix (centr. addr. admin.) |
|SA07 |Address groups (centr. addr. admin.) |
|SA08 |Person groups (centr. addr. admin.) |
|SA09 |Internat. versions address admin. |
|SA10 |Address admin. communication type |
|SARA |Archive Administration |
|SBPT |Administration Process Technology |
|SCC4 |Client Administration |
|SCON |SAPconnect - Administration |
|SCOT |SAPconnect - Administration |
|SCUA |Central User Administration |
|SCUM |Central User Administration |
|SE78 |SAPscript: Graphics administration |
|SECST|Administration of Secure Memory |
|SENG |Administration of External Indexes |
|SENGE|Explorer Index Administration |
|SIAC1|Web Object Administration |
|SLICE|Administer SAP Licenses |
|SLWA |Translation Environment Administratn |
|SM14 |Update Program Administration |
|SP12 |TemSe Administration |
|SPAD |Spool Administration |
|SPAT |Spool Administration (Test) |
|SPHA |Telephony administration |
|SPHB |SAPphone: System Administration |
|SSAA |System Administration Assistant |
|SSCA |Appointment Calendar: Administration |
|SSCA1|Appointment calendar: Administration |
|SSO2 |Workplace Single Sign-On Admin. |
|SSO2_|Workplace Administration SSO2 Ticket |
|STMA |Proposal Pool Administration |
|SURAD|Survey Administration |
|SURL_|Personalization for URL Gen. Admin. |
|SUUMD|Display User Administration |
|SWDC |Workflow Definition: Administration |
|SWEAD|Event Queue Administration |
|SWEQA|Event Queue Administration |
|SWEQA|Queue Administrator Maintenance |
|SWIA |Selection rep. for work items(admin) |
|SWRK |Administrtation using work areas |
|SWUF |Administration of Runtime System |
|SWUL |Customizing: Process Administrator |
|SWUX |SAPforms Administration |
|SYSAD|System Administration: Task List |
|S_ALR|IMG Activity: CIC_V_CCMCTIADMIN |
|S_ALR|IMG Activity: SIMG_EURO_ADMINUSER |
|S_BCE|IMG-Aktivität: BCDIGSI_ADMIN |
|S_PH0|InfoSet Query: Administration |
|S_PH0|InfoSet Query: Administration |
|S_PH0|InfoSet Query: Administration |
|S_PH0|InfoSet Query: Administration |
|S_PH0|InfoSet Query: Administration |
|TBD0 |Datafeed: Adminster Archives |
|TBD3 |Datafeed: Market data administration |
|TBD6 |Datafeed: Log file administration |
|WE46 |IDoc administration |
|WORKI|Administrtation using work areas |
----------------------------------------------------------
Do you have a SAP Basis Question?
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Changing the Title of SAP Transaction
Sometimes, internal user or customer might request you to change the Title of the SAP
Transaction code to a more meaningful one and SAP allows this to be done painlessly.
The steps to change the Title of any SAP transaction code are as follows:
First, goto tcode SE63
On the top left Menu of the screen - Click Translation - Short texts - Transactions
For example, assuming you want to change the title of the tcode FB01 from Post
Document to Post Document for G/L. On the first screen, fill in the following
information:
Transaction code - FB01
Source Language - English
Target Languate - English
To change the Title, click the Edit button
On the second line, type in the Title (For e.g. Post Document for G/L) you want for the
transaction code
Click the Save button
Now, called up the transaction code /nFB01 again and you should be able to view the
new Title.
Please note that it works for most of the Transaction code except for those new Enjoy
transaction code in 4.6x.
Related Topics:
To get the associated data element descriptions of all the fields in a table
How to get the field descriptions of a table?
Various ways of Getting the list of R/3 transaction codes
Find the list of SAP Transaction codes
Find Related Application Transaction code using Text search
Search for SAP Basis Transaction codes
Get help for your SAP Basis problem
Do you have a SAP Basis Question?
Error!SAP R/3 Books List (ABAP, Basis, Functional)
Press Ctrl+D to bookmark this page.
SAP Training CD ROMs
Computer Based Training on SAP Functional, Basis Administration and ABAP/4
Programming
Understanding SAP
Sams Teach Yourself SAP in 24 Hours (2nd Edition)
SAP R/3 for Everyone : Step-by-Step Instructions, Practical Advice, and Other Tips and
Tricks for Working with SAP
Getting Started With Sap R/3 (Prima Techs Sap Book Series)
Anticipating Change: Secrets Behind the SAP Empire
Experience SAP
Flying Start SAP(R) R/3(R): A Guide to Get You Up and Running
The Whirlwind Series of SAP: In the Path of the Whirlwind: An Apprentice Guide to
SAP
SAP: An Executive's Comprehensive Guide
SAP(R) Process, Analyze and Understand SAP(R) Processes with Knowledge Maps
Special Edition Using Sap R/3: The Most Complete Reference (Special Edition Using
SAP R/3)
Xylem Structure and the Ascent of Sap
SAP: Inside the Secret Software Power
SAP: Inside the Secret Sortware Power [DOWNLOAD: ADOBE READER]
Sap Rising
Implementing SAP
Sap R/3 Implementation: Methods and Tools
Implementing SAP R/3: The Guide for Business and Technology Managers (Other
Programming)
Implementing SAP R/3: The Guide for Business and Technology Managers
[DOWNLOAD: ADOBE READER]
SAP Planning: Best Practices in Implementation
SAP(R) R/3 Implementation Guide
Successful SAP R/3 Implementation: Practical Management of ERP Projects
SAP(R) R/3(R) Process Oriented Implementation: Iterative Process Prototyping
Implementing Sap R/3 : How to Introduce a Large System into a Large Organization, 2nd
Edition
Enterprise Management with SAP SEM / Business Analytics
Why ERP? A Primer on SAP Implementation
Implementing SAP R/3 on OS/400 (IBM Redbooks)
Capturing the whirlwind : your field guide for a successful SAP implementation
Getting Maximum Value from SAP R/3
Dynamic, Accelerated SAP Implementation
Dynamic Implementation of SAP(R) R/3(R)
Asap Implementation at the Speed of Business: Implementation at the Speed of Business
(Sap)
Implementing Sap With an Asap Methodology Focus
Preconfigured Client Made Easy 4.6C
SAP Business
SAP Blue Book, A Concise Business Guide to the World of SAP
Sap R/3 Business Blueprint: Understanding the Business Process Reference Model
What Every Business Needs to Know About SAP (Prima Tech's SAP Book Series)
SAP R/3 Business Blueprint - The Complete Video Course
Supporting SAP
SAP Service and Support
SAP Service und Support [DOWNLOAD: ADOBE READER]
Supporting Sap R/3
SAP Quick Reference
Common Sap R/3 Functions Manual (Springer Professional Computing)
Instant Access: SAP, Reference Card of R/3
SAP Career
Five Steps to an Sap Career: Your Guide to Getting into Sap
SAP Consultant
SAP Consultant Handbook
Becoming an SAP Consultant
SAP Data Migration Tools
Migrating Your SAP Data
Data Transfer Made Easy 4.0B/4.5x
Testing SAP(R) R/3(R) Systems: Using the Computer Aided Test Tool
SAP Reporting Tools
SAP R/3 Reporting Made Easy, 4.6C:Fundamentals and Development Tools
Reporting Made Easy Guidebook series, Release 4.0B
SAP R/3 Reporting Made Easy: 4.6C SET
SAP R/3 Reporting & eBusiness Intelligence
Afp Printing for Sap Using R/3 and R/2
Internet Technology of SAP
The E-Business Workplace: Discovering the Power of Enterprise Portals
Roadmap to mySAP.com
mySAP.com Industry Solutions: New Strategies for Success with SAP's Industry
Business Units
SAP R/3 Reporting & eBusiness Intelligence
The SAP R/3 on the Internet
Online Store Made Easy 4.6B ¿ Accelerated Internet Selling
E-Business and ERP: Transforming the Enterprise
SAP Workflow
Practical Workflow for SAP - Effective Business Processes using SAP's WebFlow
Engine
Workflow Management With Sap Webflow: A Practical Manual
Optimising Business Performance With Standard Software Systems: How to Reorganise
Workflows by Chance of Implementing New Erp-Systems (Sap, Baan, Peoplesoft,
Navision ...) or New Releases
ABAP Certification
ABAP Programming: A Guide to the Certification Course
SAP ABAP/4
Introduction to ABAP/4 Programming for SAP, Revised and Expanded Edition
Developing Sap's R/3 Applications With Abap/4
ABAP/4, Second Edition: Programming the SAP(R) R/3(R) System
The Official ABAP Reference
Advanced ABAP Programming
Advanced ABAP Programming for SAP
Enhancing the Quality of ABAP Development
SAP Interface Programming
ABAP Data Dictionary and Quick Reference
Software Development for Sap R/3: Data Dictionary, Abap/4, Interfaces
Sap Abap Command Reference
ABAP Language Quick-Reference
SAP ABAP Objects
ABAP Objects: Introduction to Programming SAP Applications with CDROM
ABAP Objects Reference Book
SAPscripts
SAPscript Made Easy 4.6
Smartforms
SAP Smart Forms
SAP BAPI
SAP R/3 Interfacing Using BAPIs; A Practical Guide to Working within the SAP
Business Framework with CDROM
SAP JAVA
The ABAP Developer's Guide to Java (SAP Press)
Foundations of Java for ABAP Programmers (Foundations)
Enterprise Java for SAP
JAVA Programming With the SAP Web Application Server (Hardcover)
SAP Visual Basic
Professional Visual Basic SAP R/3 Programming
SAP R/3 Data Integration Techniques using ABAP/4 and Visual Basic
SAP Web Programming
Web Programming with the SAP Web Application Server
SAP NetWeaver
SAP NetWeaver For Dummies
SAP NetWeaver TM For Dummies [DOWNLOAD: ADOBE READER]
SAP NetWeaver Roadmap
SAP Financial Accounting
Configuring SAP R/3 FI/CO: The Essential Resource for Configuring the Financial and
Controlling Modules
SAP(R) R/3(R) Financial Accounting: Making It Work For Your Business
Using Sap R/3 Fi: Beyond Business Process Reengineering
Accounting Information Systems with SAP CD-ROM, Third Edition
SAP Controlling
The 123s of ABC in SAP: Using SAP R/3 to Support Activity-Based Costing
The 123s of ABC in SAP: Using SAP R/3 to Support Activity-Based Costing
[DOWNLOAD: ADOBE READER]
SAP BW Certification
SAP BW Certification: A Business Information Warehouse Study Guide
SAP BW Certification: A Business Information Warehouse Study Guide [DOWNLOAD:
ADOBE READER]
SAP Business Information Warehouse
SAP and BW Data Warehousing: How to Plan and Implement
SAP BW Professional
Business Information Warehouse for SAP
SAP BW: A Step by Step Guide
Mastering the SAP Business Information Warehouse
Mastering the SAP Business Information Warehouse [DOWNLOAD: ADOBE
READER]
SAP BW Reporting Made Easy, 2.0B/2.1C
Corporate Information With Sap-Eis: Building a Data Warehouse and a Mis - Application
With in Sight
SAP and BW Data Warehousing [DOWNLOAD: ADOBE READER]
SAP Supply Chain Management
SAP R/3 Business Blueprint: Understanding Enterprise Supply Chain Management (2nd
Edition)
Supply Chain Management Based on SAP Systems
SAP Materials Management
SAP MM Certification and Interview Questions: SAP MM Interview Questions,
Answers, and Explanations
Instant Access: Sap Reference for Materials Management
Administering Sap R/3 : Mm-Materials Managment Modules
SAP MM Premium Paper
SAP MM Inventory Management Overview
A Step by Step Guide to the SAP MM Inventory Management Configurations
SAP Sales and Distribution
Implementing SAP Sales and Distribution
Sales and Distribution With Sap: Making Sap Sd Work for Your Business
Instant Access: SAP, Reference for Sales and Distribution
SAP Processes: Sales and Customer Service (With CD-ROM)
SAP Customer Relationship Management
mySAP CRM: The Offcial Guide to SAP CRM Release 4.0
SAP Production Planning
Administering SAP R/3: The Production and Planning Modules
SAP PP Premium Paper
A Step by Step Guide to the SAP PP Production Shop Floor Control Configurations
SAP APO
Real Optimization with SAP APO
The SAP APO Knowledge Book - Supply and Demand Planning
SAP APO System Administration
SAP Plant Maintenance
SAP(R) R/3(R) Plant Maintenance: Making It Work for Your Business
Enterprise Asset Management : Configuring and Administering SAP R/3 Plant
Maintenance
SAP Service Management
Inter-Organizational Cooperation With Sap Systems: Perspectives on Logistics and
Service Management (Sap Excellence)
SAP Quality Management
SAP(R) R/3(R) Quality Management: Making It Work for Your Business
SAP Project Management
Project Management with SAP(R) R/3(R)
SAP Consulting and Project Management (Book/CD-ROM package)
SAP Human Resource
Mysap HR Interview Questions, Answers, and Explanations: SAP HR Certification
Review
mySAP HR: Technical Principles and Programming
HR Personnel Planning and Development Using SAP
Administering SAP R/3: HR - Human Resources Module
SAP Employee Self-Service, Installation Guide, Release 4.5
Sap Documentation and Training Development Guide
SAP End User Training Plan
SAP Certification for MM, SD, PP, FI, CO
Sap R/3 Certification Exam Guide
SAP Travel Management
Business Process Redesign in Travel Management in an SAP R/3 Upgrade Project
[DOWNLOAD: PDF]
SAP Retail Industry
Retail Information Systems Based on SAP Products
SAP Basis Administration
SAP Basis Administration for Windows
SAP R/3 System Administration : The Official SAP Guide
System Administration Made Easy, 4.6C/D
Basis Administration for SAP
SAP(R) R/3(R) Administration
SAP R/3 Administrator's Handbook
SAP R/3 Administration For Dummies
SAP Electronic Data Interchange
ALE, EDI, and IDoc Technologies for SAP
SAP Transport
Sap R/3 Change and Transport Management: The Official Sap Guide (Official Sap
Guide)
SAP Archiving
Archiving your SAP Data
Efficient SAP R/3-Data Archiving : How to Handle Large Data Volumes
SAP Authorizations
R/3 Authorization Made Easy 4.6A/B
SAP Authorization System: Design and Implementation of Authorization concepts for
SAP R/3 and SAP Enterprise Portals
SAP Security
Security and Data Protection for SAP Systems
SAP Operating System and Performance Fine Tuning
SAP Performance Optimization Guide , Third Edition
SAP System Landscape Optimization
SAP Hardware Solutions : Servers, Storage and Networks for mySAP.com
Network Resource Planning For SAP R/3, BAAN IV, and PeopleSoft: A Guide to
Planning Enterprise Applications
SAP Oracle
Oracle SAP Administration (O'Reilly Oracle)
SAP R/3 and Oracle: Backup & Recovery
SAP Mircosoft
Implementing Sap R/3 Using Microsoft Cluster Server
SAP Database Administration with Microsoft SQL Server 2000
SAP(R) R/3(R) and Windows NT
Optimizing IBM Netfinity Servers for Sap R/3 and Windows Nt
Backup Solutions for Sap R/3 4.5B on Netfinity Servers Running Windows Nt
SAP AIX
A Holistic Approach to a Reliable Infrastructure for Sap R/3 on Aix
SAP Linux
Sap on DB2 Udb for Os/390 and Z/OS: Implementing Application Servers on Linux for
Zseries
SAP DB2
Database Administration Experiences: Sap R/3 on DB2 for Os/390
Sap R/3 on DB2 Udb for Os/390: Application Servers on Os/390
Sap R/3 on DB2 for Os/390: Database Availability Considerations
Sap R/3 on DB2 for Os/390: Implementing With Aix or Windows Nt Applications
Servers
Sap R/3 on DB2 for Os/390: Disaster Recovery
High Availability Considerations: Sap R/3 on DB2 for OS
DB2 Universal Database and SAP R/3 Version 4
Sap on DB2 for Z/OS and Os/390 DB2 System Cloning
SAP Tivoli
Using Tivoli to Manage a Large-Scale Sap R/3 Environment
Managing SAP R/3 with Tivoli
SAP Informix
SAP R/3 for the Informix DBA
Search www.amazon.com for more SAP books
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
SAP Certification, Functional, System Administration and ABAP Programming
Reference Books
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Easy to Remember (SAP Transaction Codes)
Content Author: Anand
Author email: anandsd2003@yahoo.co.in
SPRO DEFINE ITEM CATEGORY
MM01 CREATE MATERIAL
MM02 MODIFY MATERIAL
MM03 DISPLAY MATERIAL
MMS1 CREATE MATERIAL MASTER
MMS2 CHANGE MATERIAL MASTER
MMS3 DISPLAY MATERIAL MASTER
MB1C MAINTAIN STOCK
MMPI INITIALISE PERIOD FOR MASTER MATERIAL RECORDFROM CO
CODE
MMBE CREATE STOCK
MM60 MATERIAL LIST
XD01 CREATE CUSTOMER
XD02 MODIFY CUSTOMER
XD03 DISPLAY CUSTOMER
VA01 CREATE ORDER
VA02 CHANGE ORDER
VA03 DISPLAY ORDER
VA11 CREATE INQUIRY
VA12 CHANGE INQUIRY
VA13 DISPLAY INQUIRY
VA21 CREATE QUOTATION
VA22 CHANGE QUOTATION
VA23 DISPLAY QUOTATION
VD02 CHANGE SALES PROSPECT
VD03 DISPLAY SALES PROSPECT
VD04 DISPLAY CHANGES
VD06 FLAG FOR DELETION
VK11 MAINTAINING PRICING
VK0A ASSIGN G/L ACCOUNT GENERAL
VOK0 PRICING
VOR1 DEF COMMON DIST CHANEL
VOR2 DEF COMMON DIV
VOV6 DEFINE SCHEDULE LINES
VOV8 DEFINE SALES DOC TYPE
VOFA CREATE/OR CHANGE BILLING TYPES CONFIGURATION
V129 DEFINE INCOMPLETENESS SCHEMAS FOR FOREIGN TRADE
V149 ASSIGN INCOMPLETENESS SCHEMAS FOR COUNTRY CODE
CA01 CREATE ROUTING
CA02 EDIT ROUTING
CA03 DISPLAY ROUTING
CS01 CREATE BOM
CS02 CHANGE BOM
CS03 DISPLAY BOM
OVK1 DEFINE TAX DET RULES
OVK3 DEF TAX REL OF MASTER RECORDS CUSTOMER TAXES
OVK4 DEF TAX REL OF MASTER RECORDS MATERIAL TAXES
OVR6 DEF LEGAL STATUSES
OVS9 DEF CUSTOMER GRP
OVRA MAINT STATISTICS GRPS FOR CUSTOMERS
OVRF MAINT STATISTICS GRPS FOR MATERIAL
OVXC ASSIGN SHIIPING POINT TO PLANT
OVX6 ASSIGN PLANT TO S.O AND DIST CHANEL
OVLK DEFINE DELIVERY TYPE
OVSG DEFINE INCOTERMS
OVLH DEFINE ROUTES
OVXM ASSIGN SALES OFF TO SALES AREA
OVXJ ASSIGN SALES GRP TO SALES OFFICE
OMS2 MATERAIL UPDATE
OVLP DEFINE ITEM CATEGORY FOR DELIVERY
OX10 ASSIGN DEL PLANTS FOR TAX DET
O/S2 DEFINE SERIAL NO PROFILE
O/S1 DEFINE CENTRAL CONTROL PARAMETERS FOR SR NO
OBB8 DEFINE TERMS OF PAYMENT
OKKP ACTIVATION OF COMPONENETS
VB01 CREATE REBATE AGGREMENTS
VB02 CHANGE REBATE AGREMENT
VB03 DISPLAY REBATE AGGREMENT
VB31 CREATE PROMOTION
VB32 CHANGE PROMOTION
VB33 DISPLAY PROMOTION
VB21 CREATE SALES DEAL
VB22 CHANGE SALES DEAL
VB23 DISPLAY SALES DEAL
VB25 LIST OF SALES DEAL
VB35 PROMOTION LIST
VKA4 CREATE ARCHIVE ADMINISTRATION
VKA5 DEL ARCHIVE ADMINISTRATION
VKA6 RELOAD ARCHIVE ADMINISTRATION
VC/1 CUSTOMER LIST
VC/2 CREATE SALES SUMMARY
VDH2 DISPLAY CUSTOMER HIERARCHY
VF01 CREATE PROFORMA INVOICE
VF02 CHANGE PROFORMAINVOICE
VF03 DISPLAYPROFORMA INVOICE
VF07 DISPLAY FROM ARCHIVE
VF11 CANCEL BILL
VFX3 BLOCKED BILLING DOC
VFRB RETRO BILLING
VF04 MAINTAIN BILL DUE LIST
VF06 BACKGROUND PROCESSING
VF21 CREATE INVOICE LIST
VF22 CHANGE INVOICE LIST
VF23 DISPLAY INVOICE LIST
VF44 MAINT REVENUE LIST
VF45 REVENUE REPORTS
VF46 MAINT CANCELLATION LIST
VF31 ISSUE BILLING DOC
VFP1 SET BILLING DATE
VARR ARCHIVE DOCUMENTS
VL01N CREATE DELIVERY
VL02N TO CHANGE DELIVERY WHICH IS ALREADY CREATED
VL03N DISPLAY DELIVERY
V/08 TO CHANGE CONDITION (PR PROCEDURE)
V/30 DEFINE PRINT PARAMETERS
FD32 SETTING CREDIT LIMIT FOR CUSTOMER
/NSM12 TO REMOVE LOCK ENTRY
SM30
ND59 LIST CUSTOMER MATERIAL INFO
VB0F UPDATE BILL DOC
Related Topics:
To get the associated data element descriptions of all the fields in a table
How to get the field descriptions of a table?
Find Related Application Transaction code using Text search
Search for SAP Basis Transaction codes
A simple method of changing the SAP Tcode Title
Changing the Title of SAP Transaction
SAP Books
SAP Certification, ABAP Programming, Functional and Basis Component Reference
Books
Error!
Basic Knowledge and System Navigation Question
How to close a window?
If we want to stop a transaction in the middle, Right click on the end button (X) on the
top right corner of the window. Then select "stop transaction".
As we dont have STOP icon as we have in WINDOWS, this will help in the same way.
Its a very small tip, but will help a lot.
With Compliment by: Bhaskar
Name two ways to start a transaction.
- Dynamic Menu
- Command Field
Why do you create user-specific parameters?
They supply defaults to R/3 fields. If a field is indicated, the system automatically fills in
default value. Depending on the field definition, the entry can also be replaced with a
value entered by the user. (Concept of PARAMETER ID)
Name the three different kinds of messages in the R/3 system. What is the difference
between them?
A message can have five different types. These message types have the following effects
during list processing:
A (=Abend):
The system displays a message of this message type in a dialog window. After the user
confirms the message using ENTER, the system terminates the entire transaction (for
example SE38).
E (=Error) or W (=Warning):
The system displays a message of this message type in the status line. After the user
chooses ENTER, the system acts as follows:
While creating the basic list, the system terminates the report.
While creating a secondary list, the system terminates the corresponding processing block
and keeps displaying the previous list level.
I (=Information):
The system displays a message of this message type in a dialog window. After the user
chooses ENTER , the system resumes processing at the current program position.
S (=Success):
The system displays a message of this message type on the output screen in the status line
of the currently created list.
What is a data dictionary or repository?
Central catalog that contains the descriptions of an organization's data and provides
information about the relationships between the data and its use in programs and screens.
The data descriptions in a Data Dictionary is also called metadata, i.e., data that describes
other data.
The ABAP/4 Dictionary stores system-wide data definitions. When you create a new data
definition, the Dictionary tool does all the processing necessary to create the definition.
You can use the Dictionary tool to look up the "definition" of objects in your R/3 System.
What is a matchcode?
Comparsion key. A matchcode allows you to locate the key of a particular database
record (e.g. account number) by entering any field value contained in the record. The
system then displays a list of records matching the specifications.
If you want an end user to see a specific menu after logging on the R/3 system, how
could you do that?
User maintenance transactions allow the system administrator to create and maintain user
master records. This includes the generation and assignment of authorizations and
authorization profiles.
With Compliment by: Rohan
Related Links:
More than 100 ABAP Interview faq's
SAP Books
SAP Certification, ABAP Programming, Functional and Basis Component Reference
Books
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.sap-img.com
All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
affiliated with SAP AG.
Every effort is made to ensure the content integrity. Information used on this site is at your own risk.
The content on this site may not be reproduced or redistributed without the express written permission of
www.sap-img.com or the content authors.
SAP Certification, Functional, Basis Administration and ABAP Programming
Reference Books
SAP BW FAQ
BW Query Performance
Question:
1. What kind of tools are available to monitor the overall Query Performance?
Answers:
o BW Statistics
o BW Workload Analysis in ST03N (Use Export Mode!)
o Content of Table RSDDSTAT
Question:
2. Do I have to do something to enable such tools?
Answer:
o Yes, you need to turn on the BW Statistics:
RSA1, choose Tools -> BW statistics for InfoCubes
(Choose OLAP and WHM for your relevant Cubes)
Question:
3. What kind of tools are available to analyse a specific query in detail?
Answers:
o Transaction RSRT
o Transaction RSRTRACE
Question:
4. Do I have a overall query performance problem?
Answers:
o Use ST03N -> BW System load values to recognize the problem. Use the
number given in table 'Reporting - InfoCubes:Share of total time (s)'
to check if one of the columns %OLAP, %DB, %Frontend shows a high
number in all InfoCubes.
o You need to run ST03N in expert mode to get these values
Question:
5. What can I do if the database proportion is high for all queries?
Answers:
Check:
o If the database statistic strategy is set up properly for your DB platform
(above all for the BW specific tables)
o If database parameter set up accords with SAP Notes and SAP Services (EarlyWatch)
o If Buffers, I/O, CPU, memory on the database server are exhausted?
o If Cube compression is used regularly
o If Database partitioning is used (not available on all DB platforms)
Question:
6. What can I do if the OLAP proportion is high for all queries?
Answers:
Check:
o If the CPUs on the application server are exhausted
o If the SAP R/3 memory set up is done properly (use TX ST02 to find
bottlenecks)
o If the read mode of the queries is unfavourable (RSRREPDIR, RSDDSTAT,
Customizing default)
Question:
7. What can I do if the client proportion is high for all queries?
Answer:
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks
Sap sapscripts tips and tricks

More Related Content

What's hot

Smartforms interview questions with answers
Smartforms interview questions with answersSmartforms interview questions with answers
Smartforms interview questions with answersUttam Agrawal
 
Sap abap interview questions
Sap abap interview questionsSap abap interview questions
Sap abap interview questionskssr99
 
Sap Abap Reports
Sap Abap ReportsSap Abap Reports
Sap Abap Reportsvbpc
 
Table maintenance generator and its modifications
Table maintenance generator and its modificationsTable maintenance generator and its modifications
Table maintenance generator and its modificationsscribid.download
 
Step by step lsmw tutorial
Step by step lsmw tutorialStep by step lsmw tutorial
Step by step lsmw tutorialraonivaz
 
Sap Purchase Order Workflow
Sap Purchase Order WorkflowSap Purchase Order Workflow
Sap Purchase Order WorkflowArghadip Kar
 
How to extend an outbound i doc
How to extend an outbound i docHow to extend an outbound i doc
How to extend an outbound i docrupesh chouhan
 
User exit training
User exit trainingUser exit training
User exit trainingJen Ringel
 
ABAP for Beginners - www.sapdocs.info
ABAP for Beginners - www.sapdocs.infoABAP for Beginners - www.sapdocs.info
ABAP for Beginners - www.sapdocs.infosapdocs. info
 
Lsmw for master data upload simple explanation
Lsmw for master data upload simple explanationLsmw for master data upload simple explanation
Lsmw for master data upload simple explanationManoj Kumar
 
Ab1011 module pool programming
Ab1011   module pool programmingAb1011   module pool programming
Ab1011 module pool programmingSatheesh Kanna
 
Guide to Configure Custom SD Output Types in S/4HANA Using BRF+
Guide to Configure Custom SD Output Types in S/4HANA Using BRF+Guide to Configure Custom SD Output Types in S/4HANA Using BRF+
Guide to Configure Custom SD Output Types in S/4HANA Using BRF+Ashish Saxena
 
Variant Configurition in SAP: Beginners Guide | www.sapdocs.info
Variant Configurition in SAP: Beginners Guide | www.sapdocs.infoVariant Configurition in SAP: Beginners Guide | www.sapdocs.info
Variant Configurition in SAP: Beginners Guide | www.sapdocs.infosapdocs. info
 
S4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh TarlanaS4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh TarlanaGanesh Tarlana
 
Sap abap modularization interview questions
Sap abap modularization interview questionsSap abap modularization interview questions
Sap abap modularization interview questionsPradipta Mohanty
 

What's hot (20)

Module pool programming
Module pool programmingModule pool programming
Module pool programming
 
Smartforms interview questions with answers
Smartforms interview questions with answersSmartforms interview questions with answers
Smartforms interview questions with answers
 
Sap abap interview questions
Sap abap interview questionsSap abap interview questions
Sap abap interview questions
 
Sap Abap Reports
Sap Abap ReportsSap Abap Reports
Sap Abap Reports
 
Table maintenance generator and its modifications
Table maintenance generator and its modificationsTable maintenance generator and its modifications
Table maintenance generator and its modifications
 
Step by step lsmw tutorial
Step by step lsmw tutorialStep by step lsmw tutorial
Step by step lsmw tutorial
 
Abap reports
Abap reportsAbap reports
Abap reports
 
Dialog programming ABAP
Dialog programming ABAPDialog programming ABAP
Dialog programming ABAP
 
Sap Purchase Order Workflow
Sap Purchase Order WorkflowSap Purchase Order Workflow
Sap Purchase Order Workflow
 
How to extend an outbound i doc
How to extend an outbound i docHow to extend an outbound i doc
How to extend an outbound i doc
 
User exit training
User exit trainingUser exit training
User exit training
 
ABAP for Beginners - www.sapdocs.info
ABAP for Beginners - www.sapdocs.infoABAP for Beginners - www.sapdocs.info
ABAP for Beginners - www.sapdocs.info
 
Alv theory
Alv theoryAlv theory
Alv theory
 
Sapscript
SapscriptSapscript
Sapscript
 
Lsmw for master data upload simple explanation
Lsmw for master data upload simple explanationLsmw for master data upload simple explanation
Lsmw for master data upload simple explanation
 
Ab1011 module pool programming
Ab1011   module pool programmingAb1011   module pool programming
Ab1011 module pool programming
 
Guide to Configure Custom SD Output Types in S/4HANA Using BRF+
Guide to Configure Custom SD Output Types in S/4HANA Using BRF+Guide to Configure Custom SD Output Types in S/4HANA Using BRF+
Guide to Configure Custom SD Output Types in S/4HANA Using BRF+
 
Variant Configurition in SAP: Beginners Guide | www.sapdocs.info
Variant Configurition in SAP: Beginners Guide | www.sapdocs.infoVariant Configurition in SAP: Beginners Guide | www.sapdocs.info
Variant Configurition in SAP: Beginners Guide | www.sapdocs.info
 
S4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh TarlanaS4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh Tarlana
 
Sap abap modularization interview questions
Sap abap modularization interview questionsSap abap modularization interview questions
Sap abap modularization interview questions
 

Viewers also liked

Sap script made easy
Sap script made easySap script made easy
Sap script made easyKranthi Kumar
 
Scenario on business transaction events
Scenario on business transaction eventsScenario on business transaction events
Scenario on business transaction eventsKranthi Kumar
 
Ooabap notes with_programs
Ooabap notes with_programsOoabap notes with_programs
Ooabap notes with_programsKranthi Kumar
 
Step by step guide to basic web dynpro abap
Step by step guide to basic web dynpro abapStep by step guide to basic web dynpro abap
Step by step guide to basic web dynpro abapKranthi Kumar
 
1000 solved questions
1000 solved questions1000 solved questions
1000 solved questionsKranthi Kumar
 
SAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda TrainingsSAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda TrainingsGaruda Trainings
 
WEBDYPRO ABAP WITH DETAILED NOTES
WEBDYPRO ABAP WITH DETAILED NOTESWEBDYPRO ABAP WITH DETAILED NOTES
WEBDYPRO ABAP WITH DETAILED NOTESKranthi Kumar
 
IGROWSOFT abap material
IGROWSOFT abap materialIGROWSOFT abap material
IGROWSOFT abap materialKranthi Kumar
 
Introducing enhancement framework.doc
Introducing enhancement framework.docIntroducing enhancement framework.doc
Introducing enhancement framework.docKranthi Kumar
 
Yash technologies interview questions and answers
Yash technologies interview questions and answersYash technologies interview questions and answers
Yash technologies interview questions and answersGarySpeed1234
 
Adding custom fields to the fi report fbl5 n using bt es
Adding custom fields to the fi report fbl5 n using bt esAdding custom fields to the fi report fbl5 n using bt es
Adding custom fields to the fi report fbl5 n using bt esKranthi Kumar
 
E mail eft remittance using bte
E mail eft remittance using bteE mail eft remittance using bte
E mail eft remittance using bteKranthi Kumar
 
Webdynpro by vijayender_reddy
Webdynpro by vijayender_reddyWebdynpro by vijayender_reddy
Webdynpro by vijayender_reddyKranthi Kumar
 
Controllers and context programming
Controllers and context programmingControllers and context programming
Controllers and context programmingKranthi Kumar
 

Viewers also liked (20)

Sap script made easy
Sap script made easySap script made easy
Sap script made easy
 
Sap abap material
Sap abap materialSap abap material
Sap abap material
 
Scenario on business transaction events
Scenario on business transaction eventsScenario on business transaction events
Scenario on business transaction events
 
Exercise in alv
Exercise in alvExercise in alv
Exercise in alv
 
Sp rao abap
Sp rao abapSp rao abap
Sp rao abap
 
Ooabap notes with_programs
Ooabap notes with_programsOoabap notes with_programs
Ooabap notes with_programs
 
Badi document
Badi documentBadi document
Badi document
 
Step by step guide to basic web dynpro abap
Step by step guide to basic web dynpro abapStep by step guide to basic web dynpro abap
Step by step guide to basic web dynpro abap
 
1000 solved questions
1000 solved questions1000 solved questions
1000 solved questions
 
Epic abap
Epic  abapEpic  abap
Epic abap
 
SAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda TrainingsSAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda Trainings
 
WEBDYPRO ABAP WITH DETAILED NOTES
WEBDYPRO ABAP WITH DETAILED NOTESWEBDYPRO ABAP WITH DETAILED NOTES
WEBDYPRO ABAP WITH DETAILED NOTES
 
Crm technical
Crm technicalCrm technical
Crm technical
 
IGROWSOFT abap material
IGROWSOFT abap materialIGROWSOFT abap material
IGROWSOFT abap material
 
Introducing enhancement framework.doc
Introducing enhancement framework.docIntroducing enhancement framework.doc
Introducing enhancement framework.doc
 
Yash technologies interview questions and answers
Yash technologies interview questions and answersYash technologies interview questions and answers
Yash technologies interview questions and answers
 
Adding custom fields to the fi report fbl5 n using bt es
Adding custom fields to the fi report fbl5 n using bt esAdding custom fields to the fi report fbl5 n using bt es
Adding custom fields to the fi report fbl5 n using bt es
 
E mail eft remittance using bte
E mail eft remittance using bteE mail eft remittance using bte
E mail eft remittance using bte
 
Webdynpro by vijayender_reddy
Webdynpro by vijayender_reddyWebdynpro by vijayender_reddy
Webdynpro by vijayender_reddy
 
Controllers and context programming
Controllers and context programmingControllers and context programming
Controllers and context programming
 

Similar to Sap sapscripts tips and tricks

How to find user exits
How to find user exitsHow to find user exits
How to find user exitsMohammed Shoeb
 
Sap abap training Overview
Sap abap training OverviewSap abap training Overview
Sap abap training Overviewraviadm100
 
Looking for best Sap abap training institute in Chennai
Looking for best Sap abap training institute in ChennaiLooking for best Sap abap training institute in Chennai
Looking for best Sap abap training institute in ChennaiRaja AMEKS Infotech
 
SAP BI Generic Extraction Using a Function Module.pdf
SAP BI Generic Extraction Using a Function Module.pdfSAP BI Generic Extraction Using a Function Module.pdf
SAP BI Generic Extraction Using a Function Module.pdfKoushikGuna
 
Chapter 04 sap script - output program
Chapter 04 sap script - output programChapter 04 sap script - output program
Chapter 04 sap script - output programKranthi Kumar
 
New features-in-abap-7.4
New features-in-abap-7.4New features-in-abap-7.4
New features-in-abap-7.4swati chavan
 
Variables in sap bi
Variables in sap biVariables in sap bi
Variables in sap bishabari76
 
Open sap ui51_week_2_unit_3_acdt_exercises
Open sap ui51_week_2_unit_3_acdt_exercisesOpen sap ui51_week_2_unit_3_acdt_exercises
Open sap ui51_week_2_unit_3_acdt_exercisesvikram sukumar
 
Zebra -bar one label printing
Zebra -bar one label printingZebra -bar one label printing
Zebra -bar one label printingMax Santolaya
 
sap abap training in chennai
sap abap training in chennaisap abap training in chennai
sap abap training in chennaisanjai rsamy
 
Beginner’s guide to_sap_abap
Beginner’s guide to_sap_abapBeginner’s guide to_sap_abap
Beginner’s guide to_sap_abapAngel Inga
 
Backup%20 domain%20controller%20(bdc)%20step by-step(1)
Backup%20 domain%20controller%20(bdc)%20step by-step(1)Backup%20 domain%20controller%20(bdc)%20step by-step(1)
Backup%20 domain%20controller%20(bdc)%20step by-step(1)Srinivas Dukka
 
Abap fundamentals-training-course-document
Abap fundamentals-training-course-documentAbap fundamentals-training-course-document
Abap fundamentals-training-course-documentjohnbryan26
 
Let start with GUIXT
Let start with GUIXTLet start with GUIXT
Let start with GUIXTKang YAyan
 
Hechsp 001 Chapter 2
Hechsp 001 Chapter 2Hechsp 001 Chapter 2
Hechsp 001 Chapter 2Brian Kelly
 

Similar to Sap sapscripts tips and tricks (20)

How to find user exits
How to find user exitsHow to find user exits
How to find user exits
 
Sap abap training Overview
Sap abap training OverviewSap abap training Overview
Sap abap training Overview
 
Looking for best Sap abap training institute in Chennai
Looking for best Sap abap training institute in ChennaiLooking for best Sap abap training institute in Chennai
Looking for best Sap abap training institute in Chennai
 
SAP BI Generic Extraction Using a Function Module.pdf
SAP BI Generic Extraction Using a Function Module.pdfSAP BI Generic Extraction Using a Function Module.pdf
SAP BI Generic Extraction Using a Function Module.pdf
 
SAP Integration with Excel - Basic Guide
SAP Integration with Excel - Basic GuideSAP Integration with Excel - Basic Guide
SAP Integration with Excel - Basic Guide
 
Chapter 04 sap script - output program
Chapter 04 sap script - output programChapter 04 sap script - output program
Chapter 04 sap script - output program
 
New features-in-abap-7.4
New features-in-abap-7.4New features-in-abap-7.4
New features-in-abap-7.4
 
Variables in sap bi
Variables in sap biVariables in sap bi
Variables in sap bi
 
Open sap ui51_week_2_unit_3_acdt_exercises
Open sap ui51_week_2_unit_3_acdt_exercisesOpen sap ui51_week_2_unit_3_acdt_exercises
Open sap ui51_week_2_unit_3_acdt_exercises
 
Zebra -bar one label printing
Zebra -bar one label printingZebra -bar one label printing
Zebra -bar one label printing
 
sap abap training in chennai
sap abap training in chennaisap abap training in chennai
sap abap training in chennai
 
SAP Integration With Excel - Advanced Guide
SAP Integration With Excel - Advanced GuideSAP Integration With Excel - Advanced Guide
SAP Integration With Excel - Advanced Guide
 
Beginner’s guide to_sap_abap
Beginner’s guide to_sap_abapBeginner’s guide to_sap_abap
Beginner’s guide to_sap_abap
 
SAP ABAP
SAP ABAP SAP ABAP
SAP ABAP
 
Backup%20 domain%20controller%20(bdc)%20step by-step(1)
Backup%20 domain%20controller%20(bdc)%20step by-step(1)Backup%20 domain%20controller%20(bdc)%20step by-step(1)
Backup%20 domain%20controller%20(bdc)%20step by-step(1)
 
Sap abap
Sap abapSap abap
Sap abap
 
Abap fundamentals-training-course-document
Abap fundamentals-training-course-documentAbap fundamentals-training-course-document
Abap fundamentals-training-course-document
 
Let start with GUIXT
Let start with GUIXTLet start with GUIXT
Let start with GUIXT
 
sap
sap sap
sap
 
Hechsp 001 Chapter 2
Hechsp 001 Chapter 2Hechsp 001 Chapter 2
Hechsp 001 Chapter 2
 

More from Kranthi Kumar

Creating simple comp
Creating simple compCreating simple comp
Creating simple compKranthi Kumar
 
Binding,context mapping,navigation exercise
Binding,context mapping,navigation exerciseBinding,context mapping,navigation exercise
Binding,context mapping,navigation exerciseKranthi Kumar
 
Web(abap introduction)
Web(abap introduction)Web(abap introduction)
Web(abap introduction)Kranthi Kumar
 
Chapter 07 debugging sap scripts
Chapter 07 debugging sap scriptsChapter 07 debugging sap scripts
Chapter 07 debugging sap scriptsKranthi Kumar
 
Chapter 06 printing sap script forms
Chapter 06 printing sap script formsChapter 06 printing sap script forms
Chapter 06 printing sap script formsKranthi Kumar
 
Chapter 05 sap script - configuration
Chapter 05 sap script - configurationChapter 05 sap script - configuration
Chapter 05 sap script - configurationKranthi Kumar
 
BATCH DATA COMMUNICATION
BATCH DATA COMMUNICATIONBATCH DATA COMMUNICATION
BATCH DATA COMMUNICATIONKranthi Kumar
 
Call transaction method
Call transaction methodCall transaction method
Call transaction methodKranthi Kumar
 
Using folder options for page protection
Using folder options for page protectionUsing folder options for page protection
Using folder options for page protectionKranthi Kumar
 
Version it satya_dev
Version it satya_devVersion it satya_dev
Version it satya_devKranthi Kumar
 

More from Kranthi Kumar (20)

Dynamic binding
Dynamic bindingDynamic binding
Dynamic binding
 
Data binding
Data bindingData binding
Data binding
 
Creating simple comp
Creating simple compCreating simple comp
Creating simple comp
 
Creating messages
Creating messagesCreating messages
Creating messages
 
Creating a comp
Creating a compCreating a comp
Creating a comp
 
Context at design
Context at designContext at design
Context at design
 
Binding,context mapping,navigation exercise
Binding,context mapping,navigation exerciseBinding,context mapping,navigation exercise
Binding,context mapping,navigation exercise
 
Alv for web
Alv for webAlv for web
Alv for web
 
Web(abap introduction)
Web(abap introduction)Web(abap introduction)
Web(abap introduction)
 
Abap faq
Abap faqAbap faq
Abap faq
 
control techniques
control techniquescontrol techniques
control techniques
 
Chapter 07 debugging sap scripts
Chapter 07 debugging sap scriptsChapter 07 debugging sap scripts
Chapter 07 debugging sap scripts
 
Chapter 06 printing sap script forms
Chapter 06 printing sap script formsChapter 06 printing sap script forms
Chapter 06 printing sap script forms
 
Chapter 05 sap script - configuration
Chapter 05 sap script - configurationChapter 05 sap script - configuration
Chapter 05 sap script - configuration
 
Batch input session
Batch input sessionBatch input session
Batch input session
 
BATCH DATA COMMUNICATION
BATCH DATA COMMUNICATIONBATCH DATA COMMUNICATION
BATCH DATA COMMUNICATION
 
Call transaction method
Call transaction methodCall transaction method
Call transaction method
 
Using folder options for page protection
Using folder options for page protectionUsing folder options for page protection
Using folder options for page protection
 
Business workflow
Business workflowBusiness workflow
Business workflow
 
Version it satya_dev
Version it satya_devVersion it satya_dev
Version it satya_dev
 

Sap sapscripts tips and tricks

  • 1. SAP scripts Tips and Tricks SAP scripts is the standard SAP form design tools for user to developed customized form printing format such as purchase orders, invoices, checks, labels. With the combination of third party barcode software (barcode.dll) or printer with bardimm, you can print barcode directly using SAP scripts. SAP Scripts Reference Books SAPscript Made Easy 4.6 ABAP Certification Books ABAP Programming: A Guide to the Certification Course Introduction SAPScript Transaction codes Commands Reading Text in SAPScripts Boxes/Lines/Shading Printer commands in SAPScripts Different font on the same line Print Footer notes only on the last page Orientations in SAPSCRIPT Protect...Endprotect Retrieving data without modifying the original called program SAPscripts How to calculate Totals and Subtotals Conversion Developing SAPScript in different languages Useful Program Tools How to convert Sapscript spools request to PDF? How to Upload graphics (IMAGE) to your Sapscript? Import/Export SapScript form from PC file Common Problems Picture doesn't show in Print Preview Delete Load program for SAPScript Barcodes Details information about SAP Barcodes SapScripts FAQ SapScript Question
  • 2. Questions on PO SapScripts MEDRUCK A Sample SAP Scripts Reports SAP ABAP Forum at the convenient of your mail box Exchange ABAP related problems/solutions, program, tips, ideas with other ABAP peers from around the globe. Note: An Auto Free ABAP Tips Windows Help File will be send to you upon Joining. SAP ABAP Forum for ABAP Professional enter email ad Quick Links ABAP Tips and Tricks Main Menu Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Functional, Basis and ABAP Programming Reference Books SAPScript Transaction codes SE71 - Form painter SE72 - Style maintenance SE78 - SapScript Graphics Management SO10 - Create standard text module
  • 3. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Functional, Basis and ABAP Programming Reference Books Reading Text in SAP Scripts If you only need to output the text, you don't need to used READ_TEXT like in an ABAP program, just use the INCLUDE command in SAP Script. It will read the text and output it to your form. The Syntax is like this: /: INCLUDE &T166K-TXNAM& OBJECT &T166K-TDOBJECT& ID &T166K- TDID& LANGUAGE &EKKO-SPRAS& Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Scripts Boxes/Lines/Shading Setting default parameters for a box: You can use the POSITION and SIZE commands to set default parmeters for a box. Instead of: /: BOX XPOS '11.21' MM YPOS '5.31' MM HEIGHT '10' MM WIDTH '20' MM INTENSITY 10 FRAME 0 TW You can write: /: POSITION XORIGIN '11.21' YORIGIN '5.31' MM /: SIZE HEIGHT '2' MM WIDTH '76' MM /: BOX FRAME 10 TW INTENSITY 10
  • 4. This can be useful if you gave several boxes that share the same parameters. If you want to set the position relatively to the window use POSITION WINDOW to set the position to the top/left start of the window. Then use POSITION to set the current position relatively to the start of the Window. Note that you uses "+" or "-" in the ORIGIN position to the set the position relatively. /: POSITION WINDOW /: POSITION XORIGIN '+5' MM YORIGIN '+10' MM the position is now 5 MM from the left and 10 MM from the top of the window NOTE: After using the position command you can move the current position realtively to the last used position /: POSITION XORIGIN '+10' MM YORIGIN '+20' MM Now the position will be X = 15 and Y = 30 Drawing a line. You can draw a line by setting the Height or Weidth to 0 and add a frane. E.g. a horizontal line: /: SIZE HEIGHT '0' MM WIDTH '200' MM /: BOX FRAME 10 TW XPOS '11.21' MM YPOS '14.81' MM INTENSITY 100 Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Functional, Basis and ABAP Programming Reference Books SAP Printer commands in SAPScripts The command line in the editor must be as follows: /: PRINT-CONTROL xxxxx or
  • 5. /: PRINT-CONTROL 'xxxxx' where xxxxx stands for the five-character name of the print control. Example: /: PRINT-CONTROL ZM100 The complete printer command normally resides in the print control. If characters belonging to the print command follow after the print control in the text (only useful for the HPL2 printer driver for PCL-5 printers), the text line following after the PRINT-CONTROL command should begin with an equals sign (=) in the format column. Example: /: PRINT-CONTROL SESCP = *c5G If you do not use the equals sign, a space character is inserted between the print control SESCP and the character *c5G. Refer to OSS note 5996 - How can SAPscript include printer commands? Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Functional, Basis and ABAP Programming Reference Books Different font on the same line You can have different font on the same line by defining a character format. For example B for bold text and U for Underline. In your SAPScript apply like this : <U>Underline Text</> <B>Bold Text</> Best regards,
  • 6. SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Functional, Basis and ABAP Programming Reference Books Print Footer notes only on the last page Command to used in your sapscripts :- /: IF &NEXTPAGE& EQ 0 whatever footer you want. /: ENDIF Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Functional, Basis and ABAP Programming Reference Books Orientations in SAPSCRIPT -----Original Message----- Subject: Orientations in SAPSCRIPT From: Ashwini Jaokar Hi, I have 2 pages for a Form in SAPscript . Can I have 2 different Orientations for 2 pages Ie Can I assign Page1 as Portrait & page2 as Landscape ??? If so , How ???? Thanks in Advance. Ashwini Jaokar. -----Reply Message-----
  • 7. Subject: Re: Orientations in SAPSCRIPT From: jmersinger Ashwini, Not that I know of in the same layoutset...what you can do is create two layoutsets...one portrait, one landscape...then in the print program call each one individually. jjm -----Reply Message----- Subject: RE: Orientations in SAPSCRIPT From: Ralph Klassen Each form may only have a single orientation but you can create two forms and include them in the same spool output. In your ABAP program: 1. call function 'OPEN_FORM', don't pass a value in 'FORM' 2. call function 'START_FORM', include parameter 'FORM' passing the name of your first form 3. call function 'WRITE_FORM' as normal to output each element 4. call function 'END_FORM' 5. call function 'START_FORM', include parameter 'FORM' passing the name of your second form 6. call function 'WRITE_FORM' as normal to output each element 7. call function 'END_FORM' 8. call function 'CLOSE_FORM' Repeat the 'START_FORM' ... 'END_FORM' sequence as required. I have not tried using page numbers with this technique, I suspect that each form will restart at 1. Regards, Ralph Klassen Sylogist -----End of Reply Message-----
  • 8. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Functional, Basis and ABAP Programming Reference Books Protect...Endprotect -----Original Message----- Subject: Protect...Endprotect Hi, Can anyone share what's a PROTECT...ENDPROTECT in SAPScript form? Thanks. -----Reply Message----- Subject: RE: Protect...Endprotect hello! While using Scripts, if u don't want to break a paragraph text which aparts to another page i.e. if u wanna display the paragraph with out breaking in between two pages, u have to use protect...endprotect. all the best! regards -----End of Message----- Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com
  • 9. SAP Functional, Basis and ABAP Programming Reference Books Retrieving data without modifying the original called program * * Retrieving data without modifying the original called program * * Put this script code in your sapscripts * /: PERFORM GET_BARCODE IN PROGRAM ZSCRIPTPERFORM * /: USING &PAGE& * /: USING &NEXTPAGE& * /: CHANGING &BARCODE& * /: ENDPERFORM * / &BARCODE& * * Submitted by : SAP Basis, ABAP Programming and Other IMG Stuff * http://www.sap-img.com * REPORT ZSCRIPTPERFORM. FORM GET_BARCODE TABLES IN_PAR STRUCTURE ITCSY OUT_PAR STRUCTURE ITCSY. DATA: PAGNUM LIKE SY-TABIX, "page number NEXTPAGE LIKE SY-TABIX. "number of next page READ TABLE IN_PAR WITH KEY 'PAGE'. CHECK SY-SUBRC = 0. PAGNUM = IN_PAR-VALUE. READ TABLE IN_PAR WITH KEY 'NEXTPAGE'. CHECK SY-SUBRC = 0. NEXTPAGE = IN_PAR-VALUE. READ TABLE OUT_PAR WITH KEY 'BARCODE'. CHECK SY-SUBRC = 0. IF PAGNUM = 1. OUT_PAR-VALUE = '|'. "First page ELSE. OUT_PAR-VALUE = '||'. "Next page ENDIF. IF NEXTPAGE = 0. OUT_PAR-VALUE+2 = 'L'. "Flag: last page ENDIF. MODIFY OUT_PAR INDEX SY-TABIX. ENDFORM. *-- End of Program
  • 10. SAPscripts How to calculate Totals and Subtotals I have some doubs in BDC and SMART FORMS. I want to change the material number using the transaction code MM02 through BDC. In scripts and smartforms how to calculate totals and subtotals? To calculate totals and sub totals in sap scripts you have to use subroutines. Say if you have to add the unit price (KOMVD-KBERT) then in the main window whereever tat value is picked write this routine /: DEFINE &TOT_PRICE& /: PERFORM F_GET_PRICE IN PROGRAM <subroutine prog name> /:USING &KOMVD-KBERT& /:CHANGING &TOT_PRICE& /:ENDPERFORM Then write the variable where ever you want it to be printed (mostly it will be in footer window) Then create subroutine pool program and you have to write the code. FORM F_GET_PRICE tables int_cond structure itcsy outt_cond structure itcsy. data : value type kbert. statics value1 type kbert. Read int_cond table index 1. value = int_cond-value. value1 = value1 + value. Read outt_cond table index 1. outt_cond-value = value1. Modify outt_cond index 1. ENDFORM. I have given a rough outline, please be aware of the variable conversions as Int_cond- value and outt_cond-value are characters. SAPscripts Tips by: Raj
  • 11. Fast Links: Get help for your ABAP problems Do you have a ABAP Question? SAP Books SAP Certification, Functional, Basis Administration and ABAP Programming Reference Books SAP Scripts Tips SAP Sapscripts Tips and Tricks Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books SAPScripts - Developing SAPScript in different languages Developing SAPScript in different languages You can goto transaction SE63 and translate the scripts into different languages. In SE63, click Translation -> Long Texts -> Sapscripts -> Forms Those language you can convert to have already been pre-installed in the system. SE63 is the best way to translate since it offers check options.
  • 12. However, it does not mean that it is 100% full proof that everything is correct. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Certification, Functional, System Administration and ABAP Programming Reference Books How to convert Sapscript spools request to PDF? SAP have created a standard program RSTXPDFT4 to convert your Sapscripts spools into a PDF format. Specify the spool number and you will be able to download the sapscripts spool into your local harddisk. It look exactly like what you see during a spool display. Please note that it is not restricted to sapsciprts spool only. Any reports in the spool can be converted using the program 'RSTXPDFT4'. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Certification, Functional, System Administration and ABAP Programming Reference Books How to Upload graphics (IMAGE) to your Sapscript? Command in your Sapscript
  • 13. /: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E These are the steps to be followed for uploading graphics in R/3 system 1. First save the file as BMP 2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and make it Zoom as 100% and save as *.TIFF 3. Open SE38 and execute program RSTXLDMC 4. Give your TIFF file path name 5. Select Bcol (for Color) 6. TEXT ID will be ZHEX-MACRO-*. 7. Inplace of * write your own logo name (ZCOMPANYLOGO) 8. Execute the program 9. Now Goto SE71 create your ZFORM 10. Create logo window 11. Goto text element of logo window or In 4.6x :- 1. Goto SE71 Change the mode to GRAPHICAL 2. Choose the Graph Tabstrips 3. Now type in some name for the LOGO WINDOW 4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP 5. The code will be written automatically. You just need to drag and drop wherever you want the graphics to be. Please note that in 4.6c onwards, you can also used Windows Bitmap file ( .BMP). Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors.
  • 14. SAP Certification, Functional, Basis Administration and ABAP Programming Reference Books Import/Export SapScript form from PC file How do you backup sapscript layout sets? Can you download and upload? How? Use ABAP program: RSTXSCRP It will download and upload your sapscripts as a text file in your local harddisk. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Functional, Basis and ABAP Programming Reference Books Picture doesn't show in Print Preview You have uploaded the picture as .TIF in Sap using ABAP RSTXLDMC and have also add the statement /: INCLUDE ZHEX-SAMPLE-PICTURE OBJECT TEXT ID ST LANGUAGE EN in your SapScript but the problem is that in print preview it's not displaying the picture. It is normal that the picture doesn't show in print preview and you will be able to see the object only after printing. Don't let this bother you as long as the picture is shown on the hardcopy printout. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com
  • 15. SAP Functional, Basis and ABAP Programming Reference Books Delete Load program for SAPScript Occassionally, when you make frequent changes to your SAPScript, the system can get out of sync. When you view the form, the old data get display without your changes. This can be fixed by deleting the SAPScript LOAD with program RSTXDELL. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com Details information about SAP Barcodes A barcode solution consists of the following: - a barcode printer - a barcode reader - a mobile data collection application/program A barcode label is a special symbology to represent human readable information such as a material number or batch number in machine readable format. There are different symbologies for different applications and different industries. Luckily, you need not worry to much about that as the logistics supply chain has mostly standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support and which SAP support natively in it's printing protocols. You can print barcodes from SAP by modifying an existing output form. Behind every output form is a print program that collects all the data and then pass it to the form. The form contains the layout as well as the font, line and paragraph formats. These forms are designed using SAPScript (a very easy but frustratingly simplistic form format language) or SmartForms that is more of a graphical form design tool. Barcodes are nothing more than a font definition and is part of the style sheet associated with a particular SAPScript form. The most important aspect is to place a parameter in the line of the form that points to the data element that you want to represent as barcode
  • 16. on the form, i.e. material number. Next you need to set the font for that parameter value to one of the supported barcode symbologies. The next part of the equation can be a bit tricky as you will need to get a printer to print that barcode font. Regular laser printers does not normally print barcode fonts, only specialized industrial printers that is specifically designed to support that protocol and that uses specialized label media and heat transfer (resin) ribbon to create the sharp image required for barcodes. Not to fear though, there are two ways to get around this: - You can have your IT department do some research - most laser printers can accept a font cartridge/dimm chip (similar to computer memory), called a BarDIMM that will allow a laser printer to support the printing of barcodes. - Secondly, you can buy software that you can upload in your SAP print Server that will convert the barcode symbology as an image that will print on a regular laser printer. I found that this option results in less sharper barcodes. This option is really if you need to convert a large quantity of printers (>10) to support barcodes. Now you have a barcode printed - what next? Well there are two options, depending on your business requirements: - You can use an existing SAP transaction on a regular workstation and get a barcode wedge reader to hook up between the keyboard and the PC. These wedge readers comes in a wand or scanner format. There are even wireless wedge scanners available that allows you to roam a few yards from the workstation to scan a label. This approach is mostly used where you want to prevent human errors in typing in long material, batch or serial numbers in receiving or issuing of material. The problem is that it's just replacing the keyboard input and you are basically locked down in one location and have to bring all the material to that location to process. - Another solution is to use SAPConsole transactions or write your own ABAP Dialog programs that will fit onto a barcode enabled wireless handheld terminal and that will follow the business logic as executed on the shop floor. These programs are highly complex exercises in industrial engineering and ergonomics because of the limited screen sizes and limited ability to accept keyboard input. The user is instructed step-by-step and only scan and push F-keys to interact with the SAP system. Scan, scan, beep, beep, enter - highly automated. Content Author: Ravikumar Kandikonda Do you have a ABAP Question? Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com
  • 17. SAP Certification, Functional, Basis Administration and ABAP Programming Reference Books All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SapScript Question 1) How do you backup script layout sets? 2) What type of variables normally used in script to o/p data? 3) How do you use tabsets in layouts? 1) Use this Std program RSTXSCRP. 1) First Export to Presentation file(.doc). 2) Whenever you need that Export into SAP. 2) Normally we call them as Program symbols. Those are defined in Driver program. We can use in Script as for exp. &itab-matnr& Other variables ---System symbols : ex &page& ---Std symbols : ---Text symbols :We define them in script editor itself. Ex : /: Define &mysymbol& = 'XX' 3) We can control the tab feed in a paragraph with tab positions. The tab stops us define in the paragraph format replace the tab spacing we defined in the header data of the form. However, this depends on the extent to which we have defined tab stops in the paragraph format. If there are fewer tabs in the paragraph formats than in the header data, the tab stops of the header data are used for the rest of the line. SAPscripts Tips by : Venkat O Q: We get the total number of pages as expected by using 'SAPSCRIPT- FORMPAGES' in a duplex layout. In our case duplex case is always 'Terms & Conditions'. We do not want the number of pages as in duplex printing. What is the best possible solution?
  • 18. A: On the Terms & Conditions page, Change the Page counter mode to 'HOLD' to keep the page counter from incrementing when you print the Term & Conditions. Q: Can I Print a logo on an Invoice? A: Save a Logo using Paintshop Pro or Corel Draw as Tiff file. Use RSTXLDMC to convert the logo to standard text in SapScript. When the program is executed, the path and file name have to be correctly specified. Process could be like the following: Run RSTXLDMC Enter file name C:MAILCOMPLOGO.TIF Resolution for Tiff file Absolute X-position Absolute Y-position Absolute positioning Reserved height Shift to right UOM = CM Text title Line width for text = 132 Text name ZHEX-MACRO-COMPLOGO Text ID ST Text language = E Postscript scaling Width & Height according to PS scaling Number of Tiff gray levels (2,4,9) 2 Then Create a new window 'COMP' with attributes; Window COMP description Company Logo Window type CONST Left margin 7.00 CH window width 10.00 CH Upper margin LN window height 8.00 LN Finally in the text element , mention /: INCLUDE 'ZHEX-MACRO-COMPLOGO' OBJECT TEXT ID ST LANGUAGE 'E'. Please note that if object name is not indicated as 'ZHEX...', the logo may not be printed! You will not be able to see the logo in a test print. The same will be printed in actual printout. If you are using two logos in the same layout, the names of the logos should be unique. Say 'ZHEX-MACRO-LOGO1' and 'ZHEX-MACRO-LOGO2'. Else all the information will be overwritten. If the logo is not EXACTLY TIFF 6.0, the same will not be printed.
  • 19. See OSS notes 5995, 18045, 39031 for some inputs. SAPscripts Tips by : Shivanand Patlolla Fast Links: Get help for your ABAP problems Do you have a ABAP Question? SAP Books SAP Certification, Functional, Basis Administration and ABAP Programming Reference Books SAP Scripts Tips SAP Sapscripts Tips and Tricks Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Questions on PO SapScripts MEDRUCK 1. When do you modified MEDRUCK? ( IF I SAID I HAVE WORKED ON SCRIPTS). Generally, we modify existing sap scripts provided by SAP rather than creating one. Unless you have to do something new for your client like Labels or Packaging card, etc., MEDRUCK is the form for PO. 2. I want to know the procedure to create a purchase order using MEDRUCK. You don't create a PO using MEDRUCK. MEDRUCK is the form used to print a PO that has been created. 3. What are the usual changes to be done on MEDRUCK?
  • 20. Goto SE71, there is an option in Utilities as COPY ffrom Source client (000). Copy the from MEDRUCK into a Zname form. The common changes wud b inserting a logo, using Std text for Terms and Conditions, alignment of windows as per client requirement, get xtra data if client is asking for somethign more. 4. How can I access my data from DB to SCRIPTS? There are structures used in Scripts which hold the data entered by the user. These structures are used to get data from Database. 5. Please send me the one examples in full length. Look at MEDRUCK form and it would have a print program. you can find in tcode NACE. SAPscripts Tips by : Raj Fast Links: Other SapScipts Question SapScript Question Get help for your ABAP problems Do you have a ABAP Question? SAP Books SAP Certification, Functional, Basis Administration and ABAP Programming Reference Books SAP Scripts Tips SAP Sapscripts Tips and Tricks Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors.
  • 21. A Sample SAP Scripts Reports Author: Mona CALL FUNCTION 'OPEN_FORM' * EXPORTING * APPLICATION = 'TX' * ARCHIVE_INDEX = * ARCHIVE_PARAMS = * DEVICE = 'PRINTER' * DIALOG = 'X' * FORM = 'ZSCRIPT1' * LANGUAGE = SY-LANGU * OPTIONS = * MAIL_SENDER = * MAIL_RECIPIENT = * MAIL_APPL_OBJECT = * RAW_DATA_INTERFACE = '*' * SPONUMIV = * IMPORTING * LANGUAGE = * NEW_ARCHIVE_PARAMS = * RESULT = EXCEPTIONS CANCELED = 1 DEVICE = 2 FORM = 3 OPTIONS = 4 UNCLOSED = 5 MAIL_OPTIONS = 6 ARCHIVE_ERROR = 7 INVALID_FAX_NUMBER = 8 MORE_PARAMS_NEEDED_IN_BATCH = 9 SPOOL_ERROR = 10 CODEPAGE = 11 OTHERS = 12 . IF SY-SUBRC <> 0. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. CALL FUNCTION 'START_FORM' EXPORTING * ARCHIVE_INDEX = FORM = 'ZFORM1' * LANGUAGE = ' ' * STARTPAGE = 'X' PROGRAM = 'ZSCRIPT1' * MAIL_APPL_OBJECT = * IMPORTING * LANGUAGE = * EXCEPTIONS * FORM = 1 * FORMAT = 2
  • 22. * UNENDED = 3 * UNOPENED = 4 * UNUSED = 5 * SPOOL_ERROR = 6 * CODEPAGE = 7 * OTHERS = 8 . IF SY-SUBRC <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. CALL FUNCTION 'WRITE_FORM' EXPORTING * ELEMENT = ' ' * FUNCTION = 'SET' * TYPE = 'BODY' WINDOW = 'HEADER' * IMPORTING * PENDING_LINES = EXCEPTIONS ELEMENT = 1 FUNCTION = 2 TYPE = 3 UNOPENED = 4 UNSTARTED = 5 WINDOW = 6 BAD_PAGEFORMAT_FOR_PRINT = 7 SPOOL_ERROR = 8 OTHERS = 9 . IF SY-SUBRC <> 0. write:/ 'ERROR IN HEADER'. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. CALL FUNCTION 'WRITE_FORM' EXPORTING * ELEMENT = ' ' * FUNCTION = 'SET' * TYPE = 'BODY' WINDOW = 'MAIN' * IMPORTING * PENDING_LINES = EXCEPTIONS ELEMENT = 1 FUNCTION = 2 TYPE = 3 UNOPENED = 4 UNSTARTED = 5 WINDOW = 6 BAD_PAGEFORMAT_FOR_PRINT = 7 SPOOL_ERROR = 8 OTHERS = 9
  • 23. . IF SY-SUBRC <> 0. write:/ 'ERROR IN HEADER'. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. CALL FUNCTION 'WRITE_FORM' EXPORTING * ELEMENT = ' ' * FUNCTION = 'SET' * TYPE = 'BODY' WINDOW = 'FOOTER' * IMPORTING * PENDING_LINES = EXCEPTIONS ELEMENT = 1 FUNCTION = 2 TYPE = 3 UNOPENED = 4 UNSTARTED = 5 WINDOW = 6 BAD_PAGEFORMAT_FOR_PRINT = 7 SPOOL_ERROR = 8 OTHERS = 9 . IF SY-SUBRC <> 0. write:/ 'ERROR IN HEADER'. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. CALL FUNCTION 'END_FORM' * IMPORTING * RESULT = * EXCEPTIONS * UNOPENED = 1 * BAD_PAGEFORMAT_FOR_PRINT = 2 * SPOOL_ERROR = 3 * CODEPAGE = 4 * OTHERS = 5 . CALL FUNCTION 'CLOSE_FORM' * IMPORTING * RESULT = * RDI_RESULT = * TABLES * OTFDATA = * EXCEPTIONS * UNOPENED = 1 * BAD_PAGEFORMAT_FOR_PRINT = 2 * SEND_ERROR = 3 * SPOOL_ERROR = 4
  • 24. * CODEPAGE = 5 * OTHERS = 6 . Can you explain the difference between 1.open_form and Start form 2.end_form and Close_form. whether all 4 modules are required in the driver pgm . Open_form => It assign the form and printer, It should be first. Start_form => It start Writing mode. You can use write_form in loop to write more than one lines befor End_form. End_form => It end writing mode of current page and will require to start again through Start_form. Close_form=> it end the Form. After this you can not start again for created file. Rajiv singh. Fast Links: Get help for your ABAP problems Do you have a ABAP Question? ABAP Books ABAP Certification, BAPI, Java, Web Programming, Smart Forms, Sapscripts Reference Books SAP Scripts Tips SAP Sapscripts Tips and Tricks Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors.
  • 25. SAP Smart Forms Goodies Stuff Practical and helpful SAP SMARTFORMS Stuff to assist those who seek to know more about the SAP Smartforms. Companies use SAP Smartforms for form printing such as checks, labels and barcode. SAP Smartforms Reference Books SAP Smart Forms Introduction Introduction to SAP SmartForms Advantages of SAP Smart Forms A Simple Smartform Tutorial SAPscripts and SmartForms Difference with SMARTFORMS vs. SapScript FAQ on Migrating SAPscript to SmartForms Conversion of SAPSCRIPT to SMARTFORMS General SmartForms System Fields Example Forms Available in Standard SAP R/3 A Sample Program Calling Smartforms Smart Forms FAQ Smart forms Frequently Asked Questions Smartforms FAQ Part Two Display a contents of a table on SmartForm with LOOP Barcodes Details information about SAP Barcodes SAP ABAP Forum at the convenient of your mail box Exchange ABAP related problems/solutions, program, tips, ideas with other ABAP peers from around the globe. Note: An Auto Free ABAP Tips Windows Help File will be send to you upon Joining. SAP ABAP Forum for ABAP Professional
  • 26. enter email ad Quick Links ABAP Tips and Tricks Main Menu Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books Introduction to SAP SmartForms What is SAP Smart Forms? SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms. SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can configure forms with data from an SAP System for the relevant business processes. To print a form, you need a program for data retrieval and a Smart Form that contains the entire from logic. As data retrieval and form logic are separated, you must only adapt the Smart Form if changes to the form logic are necessary. The application program passes the data via a function module interface to the Smart Form. When activating the Smart Form, the system automatically generates a function module. At runtime, the system processes this function module. You can insert static and dynamic tables. This includes line feeds in individual table cells, triggering events for table headings and subtotals, and sorting data before output. You can check individual nodes as well as the entire form and find any existing errors in
  • 27. the tree structure. The data flow analysis checks whether all fields (variables) have a defined value at the moment they are displayed. SAP Smart Forms allow you to include graphics, which you can display either as part of the form or as background graphics. You use background graphics to copy the layout of an existing (scanned) form or to lend forms a company-specific look. During printout, you can suppress the background graphic, if desired. SAP Smart Forms also support postage optimizing. Also read SAP Note No. 168368 - Smart Forms: New form tool in Release 4.6C What Transaction to start SAP Smart Forms? Execute transaction SMARTFORMS to start SAP Smart Forms. Key Benefits of SAP Smart Forms: SAP Smart Forms allows you to reduce considerably the implementation costs of mySAP.com solutions since forms can be adjusted in minimum time. You design a form using the graphical Form Painter and the graphical Table Painter. The form logic is represented by a hierarchy structure (tree structure) that consists of individual nodes, such as nodes for global settings, nodes for texts, nodes for output tables, or nodes for graphics. To make changes, use Drag & Drop, Copy & Paste, and select different attributes. These actions do not include writing of coding lines or using a Script language. Using your form description maintained in the Form Builder, Smart Forms generates a function module that encapsulates layout, content and form logic. So you do not need a group of function modules to print a form, but only one. For Web publishing, the system provides a generated XML output of the processed form. Smart Forms provides a data stream called XML for Smart Forms (XSF) to allow the use of 3rd party printing tools. XSF passes form content from R/3 to an external product without passing any layout information about the Smart Form. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way
  • 28. affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Certification, ABAP Programming, Functional and Basis Component Reference Books Advantages of SAP Smart Forms SAP Smart Forms have the following advantages: 1. The adaption of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases. 2. Displaying table structures (dynamic framing of texts) 3. Output of background graphics, for form design in particular the use of templates which were scanned. 4. Colored output of texts 5. User-friendly and integrated Form Painter for the graphical design of forms 6. Graphical Table Painter for drawing tables 7. Reusing Font and paragraph formats in forms (Smart Styles) 8. Data interface in XML format (XML for Smart Forms, in short XSF) 9. Form translation is supported by standard translation tools 10. Flexible reuse of text modules 11. HTML output of forms (Basis release 6.10) 12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis- Release 6.10) Best regards, SAP Basis, ABAP Programming and Other IMG Stuff
  • 29. http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Functional, Basis Administration and ABAP Programming Reference Books Contributed by : SAP ABAP/4 Programming, Basis Administration, Configuration Hints and Tips A Simple Smartform Tutorial SAP Smartforms can be used for creating and maintaining forms for mass printing in SAP Systems. The output medium for Smartforms support printer, fax, e-mail, or the Internet (by using the generated XML output). According to SAP, you need neither have any programming knowledge nor use a Script language to adapt standard forms. However, basic ABAP programming skills are required only in special cases (for example, to call a function module you created or for complex and extensive conditions). 1. Create a new smartforms Transaction code SMARTFORMS Create new smartforms call ZSMART 2. Define looping process for internal table Pages and windows First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create) Here, you can specify your title and page numbering &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page) Main windows -> TABLE -> DATA In the Loop section, tick Internal table and fill in
  • 30. ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2 3. Define table in smartforms Global settings : Form interface Variable name Type assignment Reference type ITAB1 TYPE Table Structure Global definitions Variable name Type assignment Reference type ITAB2 TYPE Table Structure 4. To display the data in the form Make used of the Table Painter and declare the Line Type in Tabstrips Table e.g. HD_GEN for printing header details, IT_GEN for printing data details. You have to specify the Line Type in your Text elements in the Tabstrips Output options. Tick the New Line and specify the Line Type for outputting the data. Declare your output fields in Text elements Tabstrips - Output Options For different fonts use this Style : IDWTCERTSTYLE For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)& 5. Calling SMARTFORMS from your ABAP program REPORT ZSMARTFORM. * Calling SMARTFORMS from your ABAP program. * Collecting all the table data in your program, and pass once to SMARTFORMS * SMARTFORMS * Declare your table type in :- * Global Settings -> Form Interface * Global Definintions -> Global Data * Main Window -> Table -> DATA * * Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming * http://sapr3.tripod.com * TABLES: MKPF. DATA: FM_NAME TYPE RS38L_FNAM. DATA: BEGIN OF INT_MKPF OCCURS 0. INCLUDE STRUCTURE MKPF.
  • 31. DATA: END OF INT_MKPF. SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001. SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR. MOVE-CORRESPONDING MKPF TO INT_MKPF. APPEND INT_MKPF. ENDSELECT. * At the end of your program. * Passing data to SMARTFORMS call function 'SSF_FUNCTION_MODULE_NAME' exporting formname = 'ZSMARTFORM' * VARIANT = ' ' * DIRECT_CALL = ' ' IMPORTING FM_NAME = FM_NAME EXCEPTIONS NO_FORM = 1 NO_FUNCTION_MODULE = 2 OTHERS = 3. if sy-subrc <> 0. WRITE: / 'ERROR 1'. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. endif. call function FM_NAME * EXPORTING * ARCHIVE_INDEX = * ARCHIVE_INDEX_TAB = * ARCHIVE_PARAMETERS = * CONTROL_PARAMETERS = * MAIL_APPL_OBJ = * MAIL_RECIPIENT = * MAIL_SENDER = * OUTPUT_OPTIONS = * USER_SETTINGS = 'X' * IMPORTING * DOCUMENT_OUTPUT_INFO = * JOB_OUTPUT_INFO = * JOB_OUTPUT_OPTIONS =
  • 32. TABLES GS_MKPF = INT_MKPF EXCEPTIONS FORMATTING_ERROR = 1 INTERNAL_ERROR = 2 SEND_ERROR = 3 USER_CANCELED = 4 OTHERS = 5. if sy-subrc <> 0. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. endif. Additional Fonts for your SMARTFORMS You can create additional fonts and style with transaction SMARTSTYLES This can then be define in the paragraph and character formats, which you can then be assign to texts and fields in the Smart Form. The character formats includes effects such as superscript, subscript, barcode and font attributes. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Functional, Basis Administration and ABAP Programming Reference Books Difference with SMARTFORMS vs. SapScript(SE71)
  • 33. The Following are the differences :- a) Multiple page formats are possible in smartforms which is not the case in SAPScripts b) It is possible to have a smartform without a main window . c) Labels cannot be created in smartforms. d) Routines can be written in smartforms tool. e) Smartforms generates a function module when activated. Contributed by : SAP ABAP/4 Programming, Basis Administration, Configuration Hints and Tips f) Unlike sapscripts (RSTXSCRP), you cannot upload/download Smartform to your local harddisk. It was said that it was provided in CRM 3.0 version, but not available in R/3. You can download smartforms into Local PC in a XML format. In the same way you can upload this XML format into Smartform. From the smartform editor itself you can call download option, if you are working in CRM 3.0 environment. In R3 also, you can download into XML format. However, it's not sure about uploading. Refer to the program 'SF_XSF_DEMO'. In 4.7 Enterprise, other have seen this utlity which is completey missing in 4.6c. There is functionality to downlaod a complete form or only a particular node. (Utilities -> Download form). It will create a XML file and save it in the hard disk. For others, if you want to download/upload the Smartforms source, you will need the help from the Basis people. What you can do is to create a Transport and then FTP down to your local harddisk. When you need the Smartform source in another system, you have FTP up the Smartforms file back to the SAP server. Finally, the Basis team, will tp it into your system. g) The protect and endprotect command in sapscript doesn't work with smartforms. For example on a invoice: First data of position no 80. is printed on page one, other data of position no 80 is printed on page 2. And there's nothing you can do about it. Actually, there is something you can do about it. By using a folder node and checking the 'protect' checkbox, everything in that folder will be page protected.
  • 34. Last review : 30 August 2003 Do you have a ABAP Question? Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books FAQ on Migrating SAPscript to SmartForms Is it possible to migrate a SAPscript form to a Smart Form? Smart Forms provides a migration tool for this purpose which migrates layout and texts of a SAPscript form to a Smart Form. It does not migrate SAPscript form logic of the print program. Using Smart Forms, this logic is described by the tree structure of the Form Builder. The effort involved in migrating it depends on the complexity of the print program. Which Basis Release do I need to use SAP Smart Forms? SAP Smart Forms is available as of R/3 Basis Release 4.6C. I have heard that Smart Forms replaces SAPscript. What does "replace" mean? It does not mean that SAPscript is removed from the Basis shipment. Even as of Basis Release 4.6C, SAPscript remains part of the SAP standard and there are no plans to remove it. Since Smart Forms is currently, and will continue to be, the tool for form maintenance for mySAP.com solutions, our further development efforts will focus on Smart Forms, not on SAPscript. Do we have to migrate all SAPscript forms to Smart Forms? There is no point in migrating all SAPscript forms already in use. Since SAPscript can still be used and will be available in the future, there is no need to. If you plan to migrate a SAPscript form, it is recommended that you check whether benefit is worth the effort involved. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff
  • 35. http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books Conversion of SAPSCRIPT to SMARTFORMS SAP provides a conversion for SAPscript documents to SMARTforms. This is basically a function module, called FB_MIGRATE_FORM. You can start this function module by hand (via SE37), or create a small ABAP which migrates all SAPscript forms automatically. You can also do this one-by-one in transaction SMARTFORMS, under Utilities -> Migrate SAPscript form. You could also write a small batch program calling transaction SMARTFORMS and running the migration tool. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books SmartForms System Fields Within a form you can use the field string SFSY with its system fields. During form
  • 36. processing the system replaces these fields with the corresponding values. The field values come from the SAP System or are results of the processing. System fields of Smart Forms &SFSY-DATE& Displays the date. You determine the display format in the user master record. &SFSY-TIME& Displays the time of day in the form HH:MM:SS. &SFSY-PAGE& Inserts the number of the current print page into the text. You determine the format of the page number (for example, Arabic, numeric) in the page node. &SFSY-FORMPAGES& Displays the total number of pages for the currently processed form. This allows you to include texts such as'Page x of y' into your output. &SFSY-JOBPAGES& Contains the total page number of all forms in the currently processed print request. &SFSY-WINDOWNAME& Contains the name of the current window (string in the Window field) &SFSY-PAGENAME& Contains the name of the current page (string in the Page field) &SFSY-PAGEBREAK& Is set to 'X' after a page break (either automatic [Page 7] or command-controlled [Page 46]) &SFSY-MAINEND& Is set as soon as processing of the main window on the current page ends &SFSY-EXCEPTION& Contains the name of the raised exception. You must trigger your own exceptions, which you defined in the form interface, using the user_exception macro (syntax: user_exception <exception name >). Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved.
  • 37. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books Example Forms Available in Standard SAP R/3 SF_EXAMPLE_01 Simple example; invoice with table output of flight booking for one customer SF_EXAMPLE_02 Similar to SF_EXAMPLE_01 but with subtotals SF_EXAMPLE_03 Similar to SF_EXAMPLE_02, whereby several customers are selected in the application program; the form is called for each customer and all form outputs are included in an output request Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. A Sample Program Calling Smartforms With Compliments by: Ambekar, Abhijeet You should use 'SSF_FUNCTION_MODULE_NAME' & call function fm_name in your program & not others. *&--------------------------------------------------------------------- * *& Report ZTACA_DRIVER_SMARTFORM * *& * *&---------------------------------------------------------------------
  • 38. * *& * *& * *&--------------------------------------------------------------------- * REPORT ZTACA_DRIVER_SMARTFORM . Tables : sflight. Data : fm_name TYPE rs38l_fnam. *data : Begin of it_flttab occurs 0, * carrid type sflight-carrid, * connid type sflight-connid, * fldate type sflight-fldate, * seatsmax type sflight-seatsmax, * seatsocc type sflight-seatsocc, * End of it_flttab. data : it_flttab like table of sflight. Data : g_salary type i . * it_flttab type standard table of ty_flt. g_salary = 1000. select carrid connid fldate seatsmax seatsocc from sflight into corresponding fields of table it_flttab. CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME' EXPORTING formname = 'ZTACA_SMFORM2' * VARIANT = ' ' * DIRECT_CALL = ' ' IMPORTING FM_NAME = fm_name EXCEPTIONS NO_FORM = 1 NO_FUNCTION_MODULE = 2 OTHERS = 3 . IF sy-subrc <> 0. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. call function fm_name Exporting salary = g_salary TABLES it_flttab = it_flttab EXCEPTIONS FORMATTING_ERROR = 1 INTERNAL_ERROR = 2 SEND_ERROR = 3
  • 39. USER_CANCELED = 4 OTHERS = 5 . IF SY-SUBRC <> 0. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. Fast Links: Get help for your ABAP problems Do you have a ABAP Question? ABAP Books ABAP Certification, BAPI, Java, Web Programming, Smart Forms, Sapscripts Reference Books ABAP Tips ABAP Forum for Discussion and Samples Program Codes for Abapers Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP ABAP Programming, Functional and Basis Component Reference Books Smart forms Frequently Asked Questions Forcing a page break within table loop Create a loop around the table. Put a Command node before the table in the loop that forces a NEWPAGE on whatever condition you want. Then only loop through a subset of the internal table (based on the conditions in the Command node) of the elements in the Table node. Font style and Font size
  • 40. Goto Transaction SMARTSTYLES. There you can create Paragraph formats etc just like in sapscript. Then in your window under OUTPUT OPTIONS you include this SMARTSTYLE and use the Paragraph and character formats. Line in Smartform Either you can use a window that takes up the width of your page and only has a height of 1 mm. Then you put a frame around it (in window output options). Thus you have drawn a box but it looks like a line. Or you can just draw "__" accross the page and play with the fonts so that it joins each UNDER_SCORE. Difference between 'forminterface' and 'global definitions' in global settings of smart forms The Difference is as follows. To put it very simply: Form Interface is where you declare what must be passed in and out of the smartform (in from the print program to the smartform and out from the smartform to the print program). Global defs. is where you declare data to be used within the smartform on a global scope. ie: anything you declare here can be used in any other node in the form. Smartforms function module name Once you have activated the smartform, go to the environment -> function module name. There you can get the name of funtion module name. The key thing is the program that calls it. for instance, the invoice SMARTFORM LB_BIL_INVOICE is ran by the program RLB_INVOICE. This program uses another FM to determine the name of the FM to use itself. The key thing is that when it calls this FM (using a variable to store the actual name), that the parameters match the paramters in your smartform. Another thing to note is that the FM name will change wherever the SF is transported to.
  • 41. So you need to use the FM to determine the name of the SF. Here is the code that can be use to determine the internal name of the function module: Code: if sf_label(1) <> '/'. " need to resolve by name move sf_label to externalname. call function 'SSF_FUNCTION_MODULE_NAME' exporting formname = externalname importing fm_name = internalname exceptions no_form = 1 no_function_module = 2 others = 3. if sy-subrc <> 0. message 'e427'. endif. move internalname to sf_label. endif. It checks to see if the sf_label starts with a '/', which is how the internal names start. if it does, the name has already been converted. If not, it calls the FM and converts the name. You would then CALL FUNCTION sf_label. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Certification, ABAP Programming, Functional and Basis Component Reference Books Smartforms FAQ Part Two Smartforms output difference Problem with Smartforms: in a certain form for two differently configured printers,
  • 42. there seem to be a difference in the output of characters per inch (the distance between characters which gives a layout problem - text in two lines instead of one. It happens when the two printers having different Printer Controls' if you go to SPAD Menu (Spool Administrator Menu) you can see the difference in the Printer Control and if you make the Printer control setting for both the printers as same. then it will be ok. and also u have to check what is the device type used for both the output devices. SmartForms Output to PDF There is a way to download smartform in PDF format. Please do the following: 1. Print the smartform to the spool. 2. Note the spool number. 3. Download a PDF file (Acrobat Reader) version of the spool by running Program RSTXPDFT4 and entering the noted spool number. SmartForm Doublesided printing question Your customer wants your PO SmartForm to be able to print "Terms and Conditinos" on the back side of each page. They don't want to purchase pre-printed forms with the company's logo on the front and terms & conditions on the back. Now this presents an interesting problem. Has anyone else ever had a request like this? If for example there was a 3 page PO to be printed, they want 3 pieces of paper, the front side of each to containe the PO information (page 1, 2, and 3) and the back side of each piece of paper to containg the static "Terms & Conditions" information. Anyone have a clue how to force this out? Easy - page FRONT lists page CONTACTS as next page and CONTACTS lists FRONT as next page. Since CONTACTS does not contain a MAIN window, it will print the contacts info and then continue on to FRONT for the rest of the main items. Additionally, set print mode on FRONT to D (duplex) and set CONTACTS to 'blank' (for both resource name and print mode - this is the only way to get to the back of the page). Transport Smart Forms How does one transport SMARTFORM? SE01? How do you make sure that both, the SMARTFORM & it's function module gets transported? Or does the FM with same name gets generated automatically in the transported client? A smartform is transported no differently than any other object. if it is assigned to a development class that is atteched to a transport layer, it will be transported. The definition is transported, and when called, the function module is regenerated.
  • 43. This leads to an interetsing situation. On the new machine, it is very likely the function module name will be different than the name on the source system. Make sure, before you call the function module, you resolve the external name to the internal name using the 'SSF_FUNCTION_MODULE_NAME' function module. Typically, generate the SF, then use the pattern to being in the interface. Then change the call function to use the name you get back from the above function module. Smartforms: protect lines in main window. How to protect lines in the main window from splitting between pages? It was easy with SAPscript, but how to do it with SF's. For 4.7 version if you are using tables, there are two options for protection against line break: - You can protect a line type against page break. - You can protect several table lines against page break for output in the main area. Protection against page break for line types - Double-click on your table node and choose the Table tab page. - Switch to the detail view by choosing the Details pushbutton. - Set the Protection against page break checkbox in the table for the relevant line type. Table lines that use this line type are output on one page. Protection against page break for several table lines - Expand the main area of your table node in the navigation tree. - Insert a file node for the table lines to be protected in the main area. - If you have already created table lines in the main area, you can put the lines that you want to protect again page break under the file using Drag&Drop. Otherwise, create the table lines as subnodes of the file. - Choose the Output Options tab page of the file node and set the Page Protection option. All table lines that are in the file with the Page Protection option set are output on one page. In 4.6, Alternatively in a paragraph format use the Page protection attribute to determine whether or not to display a paragraph completely on one page. Mark it if you want to avoid that a paragraph is split up by a page break. If on the current page (only in the main window) there is not enough space left for the paragraph, the entire paragraph appears on the next page. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG.
  • 44. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Display a contents of a table on SmartForm with LOOP There's a DDIC Table called "Ugyfel" containing 5 rows. I'd like simply to display all the rows on a SF's Main window. Please follow this process to display the value from your table "Ugyfel" 1. Go with a transaction code : smartforms 2. Enter the form name like : ysmart_forms1 3. Create 4. Enter the Description for the form 5. From the left side window there will be a form interface to provide table ..... 6. Go for tables option 7. ugyfel like ugyfel(ref.type) 8. Pages and window---> page1---> main window 9. Go to the form painter adjust the main window. 10. Select main window and right click --> go for create loop 11. Name: loop1, desc: display loop. 12. Internal table ktab into ktab. 13. select loop right click -> create a text 14. name : text1, desc: display text. 15. Go to change editor. 16. Write the mater what ever you want and if you want to display data from the table write the table fields as follows: &ktab-<field1>& &ktab-<field2>& save & activate then execute ,, scripts will generate a function module like : '/ibcdw/sf0000031' copy this function module and call in executable program... For that 1. go with abap editor se38. 2. table: ugyfel. 3. parameters: test like ugyfel-<field1>. 4. data itab like ugyfel occurs 0 with header line. 5. select * from ugyfel into table itab where field1 = test1. 6. call function '/ibcdw/sf0000031' 7. tables ktab = itab. Save and activate the program ( ^f 3).
  • 45. Now run the program ( f 8) ALL THE BEST. SmartForm Tips by : Maheshkumar Gattu Fast Links: Get help for your ABAP problems Do you have a ABAP Question? ABAP Books ABAP Certification, BAPI, Java, Web Programming, Smart Forms, Sapscripts Reference Books ABAP Programming Tips ABAP Forum for Discussion and Samples Program Codes for Abapers Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Find the list of SAP Transaction codes Where I can find the list of transaction codes and their usage, I heard that there is some table which contains all the transaction codes with their descriptions. Listed here are the various ways you can find the list of transaction codes and their usage: Use transaction SE11 - ABAP Dictionary: Fill in the Database table name and click the Display button. - TSTC table will contain all the Tcodes and - TSTCT table will contain all the Tcodes with Texts. Once you entered the screen, click in Top Menu - Utilities - Table contents - Display
  • 46. If you want to display all the transaction code (total - 57,048) you have to change the Fields: Maximum number of hits to 99999 (default 500). or Simply goto transaction SM01, although this tcode is to Lock/Unlock any transaction code, you can also view all the tcode available in the R/3 system from here. or Goto transaction SE93 There are two ways where you can find the list of transaction codes in SE93. Method 1: You must be familiar with the starting characters strings for each of the R/3 application modules. Assuming you know that most Materials Management transaction codes start with MM. In the Fields: Transaction code, type in MM* and press the function key F4 The list of transaction code starting with MM will be displayed. Method 2: On the Top Menu, click Utilities - Find - Execute and the first 500 transaction will be display. If want to display all the tcodes, make sure you remembered to change the Fields: Maximum no. of hits right at the bottom of the screen. Related Topics: To get the associated data element descriptions of all the fields in a table How to get the field descriptions of a table? Find Related Application Transaction code using Text search Search for SAP Basis Transaction codes A simple method of changing the SAP Tcode Title Changing the Title of SAP Transaction SAP Books SAP Certification, ABAP Programming, Functional and Basis Component Reference Books Error!
  • 47. How to get the field descriptions of a table? I need to get the associated data element descriptions of all the fields in a table. I think there's a way to do that using the SELECT statement. Can you please give me in detail, the various steps and methods to find the corresponding SAP tables and fields for a particular transaction code, for example (CS03). Do the following 2 steps. Then create your ABAP program accordingly with the SELECT statement. 1. From table DD03L, give your tablename and get all of its field names and corresponding data element names. 2. From table DD03T, get the description of each data element you have got in step 1. Then Use Function Module DDIF_FIELDINFO_GET The sample program will look like this: REPORT ZTABLEFIELDNAME. TABLES: DFIES, X030L. DATA: BEGIN OF INTTAB OCCURS 100. INCLUDE STRUCTURE DFIES. DATA: END OF INTTAB. PARAMETERS: TABLENM TYPE DDOBJNAME DEFAULT 'MSEG', FIELDNM TYPE DFIES-FIELDNAME DEFAULT 'MENGE'. call function 'DDIF_FIELDINFO_GET' exporting tabname = TABLENM FIELDNAME = FIELDNM LANGU = SY-LANGU * LFIELDNAME = ' ' * ALL_TYPES = ' ' * IMPORTING * X030L_WA = WATAB * DDOBJTYPE = * DFIES_WA = * LINES_DESCR = TABLES DFIES_TAB = INTTAB * FIXED_VALUES = EXCEPTIONS NOT_FOUND = 1 INTERNAL_ERROR = 2
  • 48. OTHERS = 3. if sy-subrc <> 0. WRITE:/ 'Field name not found'. endif. LOOP AT INTTAB. WRITE:/ INTTAB-TABNAME, INTTAB-FIELDNAME, INTTAB-FIELDTEXT. ENDLOOP. *** End of Program OR Step 1. Run the transaction and click on System -> Status. Note the program name shown under the transaction code. Step 2. Run SE49 and enter the program name you identified in step 1 (SAPLCSDI) and then press enter. This will identify the tables used, however, as you want to know the fields used as well then you may have to resort to looking at the actual code (get a developer involved if you're not one) using transaction SE80. In this case the transaction CS03 is assigned to a screen with a function group so it's a slightly tricker process, hence the need for a developers service. For all the tables, descriptions and fields you can refer to these tables: DD02L : ALL SAP TABLE NAMES DD02T : DESCRIPTION OF TABLE NAMES DD03L : FIELDS IN A TABLE. Related Links: Find Related Application Transaction code using Text search Search for SAP Basis Transaction codes A simple method of changing the SAP Tcode Title Changing the Title of SAP Transaction Get help for your ABAP problems Do you have a ABAP Question? SAP Certification, Functional, Basis Administration and ABAP Programming
  • 49. Reference Books Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Basis Administration, Functional and ABAP Programming Reference Books Search for SAP Transaction codes You can access all the transaction codes by using the transaction code 'SDMO'. This is the transaction code for the Dynamic Menu. Based on your search string, you can get all related transaction codes for all the SAP application modules. For e.g. the Search text for ADMIN returns the following results: ---------------------------------------------------------- |Tcode|Transaktionstext | ---------------------------------------------------------- |ADOK |AM: System Administration Guide | |BALE |Area Menu for Administration | |BDMO |ALE CCMS Group Administration | |CATSX|Time Sheet Admin.: Initial Screen |
  • 50. |CICY |CTI Administration | |CJV6 |Maintenance: Version administration | |CN84 |PS: Archiving project - admin. | |COA4 |PP: Archiving order - administration | |CSADM|Content Server Administration | |FC_BW|Administrator Workbench | |FDTA |TemSe/REGUT Data Administration | |FDTT |Treasury Data Medium Administration | |FO86 |Change active admin.contract fees | |FO8E |Create admin.contract event | |FO8F |Change admin.contract event | |FO8G |Display admin.contract event | |FO8H |Admin.costs acct sttlmnt simulation | |FOART|REsearch: Administration Web-User | |HRCMP|Compensation Administration | |HRCMP|Budget Administration: Display | |HRCMP|Budget Administration: Change | |IM_AR|Admin. of App. Request Archives | |KA18 |Archive admin: assess., distr., ... | |KE72 |Archive Administration: Line Items | |KE73 |Archive Administration: Totals Recs | |KPRO |KPRO Administration | |OAAD |ArchiveLink Administration Documents | |OG00 |Personnel Administration Customizing | |OG01 |Personnel Administration Customizing | |OMSM |CS MM Set Up Administrative Data | |OOCM_|Compensation Administration Settings | |OOML |Room Administration Mail Connection | |OOPC |Administration: Personnel No. Check | |OY22 |Create subadministrator Customizing | |OYEA |IDoc administration | |PA97 |Compensation administration - matrix | |PA98 |Compensation Administration | |PA99 |Compensation Admin. - Release Report | |PACA |PF administration | |PAT1 |Personnel Administration infosystem | |PC00_|CBS survey salary administrations | |PC00_|Tax Certificates - Administration 16 | |PP26 |Plan Scenario Administration | |PP2D |Administer Payroll Results | |PSO5 |PD: Administration Tools | |PUCA |PC administration for PF | |PVSEA|Administer Search Engine | |QD25 |Archiving Notifications: Admin. | |S002 |Menu Administration | |SA02 |Academic title (cent. addr. admin.) | |SA04 |Name prefixes (centr. addr. admin.) | |SA05 |Name suffix (centr. addr. admin.) | |SA07 |Address groups (centr. addr. admin.) | |SA08 |Person groups (centr. addr. admin.) | |SA09 |Internat. versions address admin. | |SA10 |Address admin. communication type | |SARA |Archive Administration | |SBPT |Administration Process Technology | |SCC4 |Client Administration | |SCON |SAPconnect - Administration |
  • 51. |SCOT |SAPconnect - Administration | |SCUA |Central User Administration | |SCUM |Central User Administration | |SE78 |SAPscript: Graphics administration | |SECST|Administration of Secure Memory | |SENG |Administration of External Indexes | |SENGE|Explorer Index Administration | |SIAC1|Web Object Administration | |SLICE|Administer SAP Licenses | |SLWA |Translation Environment Administratn | |SM14 |Update Program Administration | |SP12 |TemSe Administration | |SPAD |Spool Administration | |SPAT |Spool Administration (Test) | |SPHA |Telephony administration | |SPHB |SAPphone: System Administration | |SSAA |System Administration Assistant | |SSCA |Appointment Calendar: Administration | |SSCA1|Appointment calendar: Administration | |SSO2 |Workplace Single Sign-On Admin. | |SSO2_|Workplace Administration SSO2 Ticket | |STMA |Proposal Pool Administration | |SURAD|Survey Administration | |SURL_|Personalization for URL Gen. Admin. | |SUUMD|Display User Administration | |SWDC |Workflow Definition: Administration | |SWEAD|Event Queue Administration | |SWEQA|Event Queue Administration | |SWEQA|Queue Administrator Maintenance | |SWIA |Selection rep. for work items(admin) | |SWRK |Administrtation using work areas | |SWUF |Administration of Runtime System | |SWUL |Customizing: Process Administrator | |SWUX |SAPforms Administration | |SYSAD|System Administration: Task List | |S_ALR|IMG Activity: CIC_V_CCMCTIADMIN | |S_ALR|IMG Activity: SIMG_EURO_ADMINUSER | |S_BCE|IMG-Aktivität: BCDIGSI_ADMIN | |S_PH0|InfoSet Query: Administration | |S_PH0|InfoSet Query: Administration | |S_PH0|InfoSet Query: Administration | |S_PH0|InfoSet Query: Administration | |S_PH0|InfoSet Query: Administration | |TBD0 |Datafeed: Adminster Archives | |TBD3 |Datafeed: Market data administration | |TBD6 |Datafeed: Log file administration | |WE46 |IDoc administration | |WORKI|Administrtation using work areas | ---------------------------------------------------------- Do you have a SAP Basis Question?
  • 52. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Changing the Title of SAP Transaction Sometimes, internal user or customer might request you to change the Title of the SAP Transaction code to a more meaningful one and SAP allows this to be done painlessly. The steps to change the Title of any SAP transaction code are as follows: First, goto tcode SE63 On the top left Menu of the screen - Click Translation - Short texts - Transactions For example, assuming you want to change the title of the tcode FB01 from Post Document to Post Document for G/L. On the first screen, fill in the following information: Transaction code - FB01 Source Language - English Target Languate - English To change the Title, click the Edit button On the second line, type in the Title (For e.g. Post Document for G/L) you want for the transaction code Click the Save button Now, called up the transaction code /nFB01 again and you should be able to view the new Title. Please note that it works for most of the Transaction code except for those new Enjoy transaction code in 4.6x. Related Topics:
  • 53. To get the associated data element descriptions of all the fields in a table How to get the field descriptions of a table? Various ways of Getting the list of R/3 transaction codes Find the list of SAP Transaction codes Find Related Application Transaction code using Text search Search for SAP Basis Transaction codes Get help for your SAP Basis problem Do you have a SAP Basis Question? Error!SAP R/3 Books List (ABAP, Basis, Functional) Press Ctrl+D to bookmark this page. SAP Training CD ROMs Computer Based Training on SAP Functional, Basis Administration and ABAP/4 Programming Understanding SAP Sams Teach Yourself SAP in 24 Hours (2nd Edition) SAP R/3 for Everyone : Step-by-Step Instructions, Practical Advice, and Other Tips and Tricks for Working with SAP Getting Started With Sap R/3 (Prima Techs Sap Book Series) Anticipating Change: Secrets Behind the SAP Empire Experience SAP Flying Start SAP(R) R/3(R): A Guide to Get You Up and Running The Whirlwind Series of SAP: In the Path of the Whirlwind: An Apprentice Guide to SAP SAP: An Executive's Comprehensive Guide SAP(R) Process, Analyze and Understand SAP(R) Processes with Knowledge Maps Special Edition Using Sap R/3: The Most Complete Reference (Special Edition Using SAP R/3) Xylem Structure and the Ascent of Sap SAP: Inside the Secret Software Power SAP: Inside the Secret Sortware Power [DOWNLOAD: ADOBE READER] Sap Rising Implementing SAP Sap R/3 Implementation: Methods and Tools Implementing SAP R/3: The Guide for Business and Technology Managers (Other Programming) Implementing SAP R/3: The Guide for Business and Technology Managers [DOWNLOAD: ADOBE READER]
  • 54. SAP Planning: Best Practices in Implementation SAP(R) R/3 Implementation Guide Successful SAP R/3 Implementation: Practical Management of ERP Projects SAP(R) R/3(R) Process Oriented Implementation: Iterative Process Prototyping Implementing Sap R/3 : How to Introduce a Large System into a Large Organization, 2nd Edition Enterprise Management with SAP SEM / Business Analytics Why ERP? A Primer on SAP Implementation Implementing SAP R/3 on OS/400 (IBM Redbooks) Capturing the whirlwind : your field guide for a successful SAP implementation Getting Maximum Value from SAP R/3 Dynamic, Accelerated SAP Implementation Dynamic Implementation of SAP(R) R/3(R) Asap Implementation at the Speed of Business: Implementation at the Speed of Business (Sap) Implementing Sap With an Asap Methodology Focus Preconfigured Client Made Easy 4.6C SAP Business SAP Blue Book, A Concise Business Guide to the World of SAP Sap R/3 Business Blueprint: Understanding the Business Process Reference Model What Every Business Needs to Know About SAP (Prima Tech's SAP Book Series) SAP R/3 Business Blueprint - The Complete Video Course Supporting SAP SAP Service and Support SAP Service und Support [DOWNLOAD: ADOBE READER] Supporting Sap R/3 SAP Quick Reference Common Sap R/3 Functions Manual (Springer Professional Computing) Instant Access: SAP, Reference Card of R/3 SAP Career Five Steps to an Sap Career: Your Guide to Getting into Sap SAP Consultant SAP Consultant Handbook Becoming an SAP Consultant SAP Data Migration Tools Migrating Your SAP Data Data Transfer Made Easy 4.0B/4.5x Testing SAP(R) R/3(R) Systems: Using the Computer Aided Test Tool
  • 55. SAP Reporting Tools SAP R/3 Reporting Made Easy, 4.6C:Fundamentals and Development Tools Reporting Made Easy Guidebook series, Release 4.0B SAP R/3 Reporting Made Easy: 4.6C SET SAP R/3 Reporting & eBusiness Intelligence Afp Printing for Sap Using R/3 and R/2 Internet Technology of SAP The E-Business Workplace: Discovering the Power of Enterprise Portals Roadmap to mySAP.com mySAP.com Industry Solutions: New Strategies for Success with SAP's Industry Business Units SAP R/3 Reporting & eBusiness Intelligence The SAP R/3 on the Internet Online Store Made Easy 4.6B ¿ Accelerated Internet Selling E-Business and ERP: Transforming the Enterprise SAP Workflow Practical Workflow for SAP - Effective Business Processes using SAP's WebFlow Engine Workflow Management With Sap Webflow: A Practical Manual Optimising Business Performance With Standard Software Systems: How to Reorganise Workflows by Chance of Implementing New Erp-Systems (Sap, Baan, Peoplesoft, Navision ...) or New Releases ABAP Certification ABAP Programming: A Guide to the Certification Course SAP ABAP/4 Introduction to ABAP/4 Programming for SAP, Revised and Expanded Edition Developing Sap's R/3 Applications With Abap/4 ABAP/4, Second Edition: Programming the SAP(R) R/3(R) System The Official ABAP Reference Advanced ABAP Programming Advanced ABAP Programming for SAP Enhancing the Quality of ABAP Development SAP Interface Programming ABAP Data Dictionary and Quick Reference Software Development for Sap R/3: Data Dictionary, Abap/4, Interfaces Sap Abap Command Reference ABAP Language Quick-Reference SAP ABAP Objects ABAP Objects: Introduction to Programming SAP Applications with CDROM
  • 56. ABAP Objects Reference Book SAPscripts SAPscript Made Easy 4.6 Smartforms SAP Smart Forms SAP BAPI SAP R/3 Interfacing Using BAPIs; A Practical Guide to Working within the SAP Business Framework with CDROM SAP JAVA The ABAP Developer's Guide to Java (SAP Press) Foundations of Java for ABAP Programmers (Foundations) Enterprise Java for SAP JAVA Programming With the SAP Web Application Server (Hardcover) SAP Visual Basic Professional Visual Basic SAP R/3 Programming SAP R/3 Data Integration Techniques using ABAP/4 and Visual Basic SAP Web Programming Web Programming with the SAP Web Application Server SAP NetWeaver SAP NetWeaver For Dummies SAP NetWeaver TM For Dummies [DOWNLOAD: ADOBE READER] SAP NetWeaver Roadmap SAP Financial Accounting Configuring SAP R/3 FI/CO: The Essential Resource for Configuring the Financial and Controlling Modules SAP(R) R/3(R) Financial Accounting: Making It Work For Your Business Using Sap R/3 Fi: Beyond Business Process Reengineering Accounting Information Systems with SAP CD-ROM, Third Edition SAP Controlling The 123s of ABC in SAP: Using SAP R/3 to Support Activity-Based Costing The 123s of ABC in SAP: Using SAP R/3 to Support Activity-Based Costing [DOWNLOAD: ADOBE READER] SAP BW Certification SAP BW Certification: A Business Information Warehouse Study Guide SAP BW Certification: A Business Information Warehouse Study Guide [DOWNLOAD: ADOBE READER]
  • 57. SAP Business Information Warehouse SAP and BW Data Warehousing: How to Plan and Implement SAP BW Professional Business Information Warehouse for SAP SAP BW: A Step by Step Guide Mastering the SAP Business Information Warehouse Mastering the SAP Business Information Warehouse [DOWNLOAD: ADOBE READER] SAP BW Reporting Made Easy, 2.0B/2.1C Corporate Information With Sap-Eis: Building a Data Warehouse and a Mis - Application With in Sight SAP and BW Data Warehousing [DOWNLOAD: ADOBE READER] SAP Supply Chain Management SAP R/3 Business Blueprint: Understanding Enterprise Supply Chain Management (2nd Edition) Supply Chain Management Based on SAP Systems SAP Materials Management SAP MM Certification and Interview Questions: SAP MM Interview Questions, Answers, and Explanations Instant Access: Sap Reference for Materials Management Administering Sap R/3 : Mm-Materials Managment Modules SAP MM Premium Paper SAP MM Inventory Management Overview A Step by Step Guide to the SAP MM Inventory Management Configurations SAP Sales and Distribution Implementing SAP Sales and Distribution Sales and Distribution With Sap: Making Sap Sd Work for Your Business Instant Access: SAP, Reference for Sales and Distribution SAP Processes: Sales and Customer Service (With CD-ROM) SAP Customer Relationship Management mySAP CRM: The Offcial Guide to SAP CRM Release 4.0 SAP Production Planning Administering SAP R/3: The Production and Planning Modules SAP PP Premium Paper A Step by Step Guide to the SAP PP Production Shop Floor Control Configurations SAP APO Real Optimization with SAP APO The SAP APO Knowledge Book - Supply and Demand Planning
  • 58. SAP APO System Administration SAP Plant Maintenance SAP(R) R/3(R) Plant Maintenance: Making It Work for Your Business Enterprise Asset Management : Configuring and Administering SAP R/3 Plant Maintenance SAP Service Management Inter-Organizational Cooperation With Sap Systems: Perspectives on Logistics and Service Management (Sap Excellence) SAP Quality Management SAP(R) R/3(R) Quality Management: Making It Work for Your Business SAP Project Management Project Management with SAP(R) R/3(R) SAP Consulting and Project Management (Book/CD-ROM package) SAP Human Resource Mysap HR Interview Questions, Answers, and Explanations: SAP HR Certification Review mySAP HR: Technical Principles and Programming HR Personnel Planning and Development Using SAP Administering SAP R/3: HR - Human Resources Module SAP Employee Self-Service, Installation Guide, Release 4.5 Sap Documentation and Training Development Guide SAP End User Training Plan SAP Certification for MM, SD, PP, FI, CO Sap R/3 Certification Exam Guide SAP Travel Management Business Process Redesign in Travel Management in an SAP R/3 Upgrade Project [DOWNLOAD: PDF] SAP Retail Industry Retail Information Systems Based on SAP Products SAP Basis Administration SAP Basis Administration for Windows SAP R/3 System Administration : The Official SAP Guide System Administration Made Easy, 4.6C/D Basis Administration for SAP SAP(R) R/3(R) Administration SAP R/3 Administrator's Handbook SAP R/3 Administration For Dummies
  • 59. SAP Electronic Data Interchange ALE, EDI, and IDoc Technologies for SAP SAP Transport Sap R/3 Change and Transport Management: The Official Sap Guide (Official Sap Guide) SAP Archiving Archiving your SAP Data Efficient SAP R/3-Data Archiving : How to Handle Large Data Volumes SAP Authorizations R/3 Authorization Made Easy 4.6A/B SAP Authorization System: Design and Implementation of Authorization concepts for SAP R/3 and SAP Enterprise Portals SAP Security Security and Data Protection for SAP Systems SAP Operating System and Performance Fine Tuning SAP Performance Optimization Guide , Third Edition SAP System Landscape Optimization SAP Hardware Solutions : Servers, Storage and Networks for mySAP.com Network Resource Planning For SAP R/3, BAAN IV, and PeopleSoft: A Guide to Planning Enterprise Applications SAP Oracle Oracle SAP Administration (O'Reilly Oracle) SAP R/3 and Oracle: Backup & Recovery SAP Mircosoft Implementing Sap R/3 Using Microsoft Cluster Server SAP Database Administration with Microsoft SQL Server 2000 SAP(R) R/3(R) and Windows NT Optimizing IBM Netfinity Servers for Sap R/3 and Windows Nt Backup Solutions for Sap R/3 4.5B on Netfinity Servers Running Windows Nt SAP AIX A Holistic Approach to a Reliable Infrastructure for Sap R/3 on Aix SAP Linux Sap on DB2 Udb for Os/390 and Z/OS: Implementing Application Servers on Linux for Zseries SAP DB2 Database Administration Experiences: Sap R/3 on DB2 for Os/390
  • 60. Sap R/3 on DB2 Udb for Os/390: Application Servers on Os/390 Sap R/3 on DB2 for Os/390: Database Availability Considerations Sap R/3 on DB2 for Os/390: Implementing With Aix or Windows Nt Applications Servers Sap R/3 on DB2 for Os/390: Disaster Recovery High Availability Considerations: Sap R/3 on DB2 for OS DB2 Universal Database and SAP R/3 Version 4 Sap on DB2 for Z/OS and Os/390 DB2 System Cloning SAP Tivoli Using Tivoli to Manage a Large-Scale Sap R/3 Environment Managing SAP R/3 with Tivoli SAP Informix SAP R/3 for the Informix DBA Search www.amazon.com for more SAP books SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com SAP Certification, Functional, System Administration and ABAP Programming Reference Books Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Easy to Remember (SAP Transaction Codes) Content Author: Anand Author email: anandsd2003@yahoo.co.in SPRO DEFINE ITEM CATEGORY
  • 61. MM01 CREATE MATERIAL MM02 MODIFY MATERIAL MM03 DISPLAY MATERIAL MMS1 CREATE MATERIAL MASTER MMS2 CHANGE MATERIAL MASTER MMS3 DISPLAY MATERIAL MASTER MB1C MAINTAIN STOCK MMPI INITIALISE PERIOD FOR MASTER MATERIAL RECORDFROM CO CODE MMBE CREATE STOCK MM60 MATERIAL LIST XD01 CREATE CUSTOMER XD02 MODIFY CUSTOMER XD03 DISPLAY CUSTOMER VA01 CREATE ORDER VA02 CHANGE ORDER VA03 DISPLAY ORDER VA11 CREATE INQUIRY VA12 CHANGE INQUIRY VA13 DISPLAY INQUIRY VA21 CREATE QUOTATION VA22 CHANGE QUOTATION VA23 DISPLAY QUOTATION VD02 CHANGE SALES PROSPECT VD03 DISPLAY SALES PROSPECT VD04 DISPLAY CHANGES VD06 FLAG FOR DELETION VK11 MAINTAINING PRICING VK0A ASSIGN G/L ACCOUNT GENERAL VOK0 PRICING VOR1 DEF COMMON DIST CHANEL VOR2 DEF COMMON DIV VOV6 DEFINE SCHEDULE LINES VOV8 DEFINE SALES DOC TYPE VOFA CREATE/OR CHANGE BILLING TYPES CONFIGURATION V129 DEFINE INCOMPLETENESS SCHEMAS FOR FOREIGN TRADE V149 ASSIGN INCOMPLETENESS SCHEMAS FOR COUNTRY CODE CA01 CREATE ROUTING CA02 EDIT ROUTING CA03 DISPLAY ROUTING CS01 CREATE BOM CS02 CHANGE BOM CS03 DISPLAY BOM OVK1 DEFINE TAX DET RULES OVK3 DEF TAX REL OF MASTER RECORDS CUSTOMER TAXES OVK4 DEF TAX REL OF MASTER RECORDS MATERIAL TAXES OVR6 DEF LEGAL STATUSES OVS9 DEF CUSTOMER GRP OVRA MAINT STATISTICS GRPS FOR CUSTOMERS OVRF MAINT STATISTICS GRPS FOR MATERIAL OVXC ASSIGN SHIIPING POINT TO PLANT OVX6 ASSIGN PLANT TO S.O AND DIST CHANEL OVLK DEFINE DELIVERY TYPE OVSG DEFINE INCOTERMS OVLH DEFINE ROUTES OVXM ASSIGN SALES OFF TO SALES AREA OVXJ ASSIGN SALES GRP TO SALES OFFICE
  • 62. OMS2 MATERAIL UPDATE OVLP DEFINE ITEM CATEGORY FOR DELIVERY OX10 ASSIGN DEL PLANTS FOR TAX DET O/S2 DEFINE SERIAL NO PROFILE O/S1 DEFINE CENTRAL CONTROL PARAMETERS FOR SR NO OBB8 DEFINE TERMS OF PAYMENT OKKP ACTIVATION OF COMPONENETS VB01 CREATE REBATE AGGREMENTS VB02 CHANGE REBATE AGREMENT VB03 DISPLAY REBATE AGGREMENT VB31 CREATE PROMOTION VB32 CHANGE PROMOTION VB33 DISPLAY PROMOTION VB21 CREATE SALES DEAL VB22 CHANGE SALES DEAL VB23 DISPLAY SALES DEAL VB25 LIST OF SALES DEAL VB35 PROMOTION LIST VKA4 CREATE ARCHIVE ADMINISTRATION VKA5 DEL ARCHIVE ADMINISTRATION VKA6 RELOAD ARCHIVE ADMINISTRATION VC/1 CUSTOMER LIST VC/2 CREATE SALES SUMMARY VDH2 DISPLAY CUSTOMER HIERARCHY VF01 CREATE PROFORMA INVOICE VF02 CHANGE PROFORMAINVOICE VF03 DISPLAYPROFORMA INVOICE VF07 DISPLAY FROM ARCHIVE VF11 CANCEL BILL VFX3 BLOCKED BILLING DOC VFRB RETRO BILLING VF04 MAINTAIN BILL DUE LIST VF06 BACKGROUND PROCESSING VF21 CREATE INVOICE LIST VF22 CHANGE INVOICE LIST VF23 DISPLAY INVOICE LIST VF44 MAINT REVENUE LIST VF45 REVENUE REPORTS VF46 MAINT CANCELLATION LIST VF31 ISSUE BILLING DOC VFP1 SET BILLING DATE VARR ARCHIVE DOCUMENTS VL01N CREATE DELIVERY VL02N TO CHANGE DELIVERY WHICH IS ALREADY CREATED VL03N DISPLAY DELIVERY V/08 TO CHANGE CONDITION (PR PROCEDURE) V/30 DEFINE PRINT PARAMETERS FD32 SETTING CREDIT LIMIT FOR CUSTOMER /NSM12 TO REMOVE LOCK ENTRY SM30 ND59 LIST CUSTOMER MATERIAL INFO VB0F UPDATE BILL DOC Related Topics: To get the associated data element descriptions of all the fields in a table How to get the field descriptions of a table?
  • 63. Find Related Application Transaction code using Text search Search for SAP Basis Transaction codes A simple method of changing the SAP Tcode Title Changing the Title of SAP Transaction SAP Books SAP Certification, ABAP Programming, Functional and Basis Component Reference Books Error! Basic Knowledge and System Navigation Question How to close a window? If we want to stop a transaction in the middle, Right click on the end button (X) on the top right corner of the window. Then select "stop transaction". As we dont have STOP icon as we have in WINDOWS, this will help in the same way. Its a very small tip, but will help a lot. With Compliment by: Bhaskar Name two ways to start a transaction. - Dynamic Menu - Command Field Why do you create user-specific parameters? They supply defaults to R/3 fields. If a field is indicated, the system automatically fills in default value. Depending on the field definition, the entry can also be replaced with a value entered by the user. (Concept of PARAMETER ID) Name the three different kinds of messages in the R/3 system. What is the difference between them? A message can have five different types. These message types have the following effects during list processing: A (=Abend): The system displays a message of this message type in a dialog window. After the user confirms the message using ENTER, the system terminates the entire transaction (for example SE38). E (=Error) or W (=Warning): The system displays a message of this message type in the status line. After the user
  • 64. chooses ENTER, the system acts as follows: While creating the basic list, the system terminates the report. While creating a secondary list, the system terminates the corresponding processing block and keeps displaying the previous list level. I (=Information): The system displays a message of this message type in a dialog window. After the user chooses ENTER , the system resumes processing at the current program position. S (=Success): The system displays a message of this message type on the output screen in the status line of the currently created list. What is a data dictionary or repository? Central catalog that contains the descriptions of an organization's data and provides information about the relationships between the data and its use in programs and screens. The data descriptions in a Data Dictionary is also called metadata, i.e., data that describes other data. The ABAP/4 Dictionary stores system-wide data definitions. When you create a new data definition, the Dictionary tool does all the processing necessary to create the definition. You can use the Dictionary tool to look up the "definition" of objects in your R/3 System. What is a matchcode? Comparsion key. A matchcode allows you to locate the key of a particular database record (e.g. account number) by entering any field value contained in the record. The system then displays a list of records matching the specifications. If you want an end user to see a specific menu after logging on the R/3 system, how could you do that? User maintenance transactions allow the system administrator to create and maintain user master records. This includes the generation and assignment of authorizations and authorization profiles. With Compliment by: Rohan Related Links: More than 100 ABAP Interview faq's SAP Books SAP Certification, ABAP Programming, Functional and Basis Component Reference Books
  • 65. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. Best regards, SAP Basis, ABAP Programming and Other IMG Stuff http://www.sap-img.com All the site contents are Copyright © www.sap-img.com and the content authors. All rights reserved. All product names are trademarks of their respective companies. The site www.sap-img.com is in no way affiliated with SAP AG. Every effort is made to ensure the content integrity. Information used on this site is at your own risk. The content on this site may not be reproduced or redistributed without the express written permission of www.sap-img.com or the content authors. SAP Certification, Functional, Basis Administration and ABAP Programming Reference Books SAP BW FAQ BW Query Performance Question: 1. What kind of tools are available to monitor the overall Query Performance? Answers: o BW Statistics o BW Workload Analysis in ST03N (Use Export Mode!) o Content of Table RSDDSTAT Question: 2. Do I have to do something to enable such tools? Answer: o Yes, you need to turn on the BW Statistics: RSA1, choose Tools -> BW statistics for InfoCubes
  • 66. (Choose OLAP and WHM for your relevant Cubes) Question: 3. What kind of tools are available to analyse a specific query in detail? Answers: o Transaction RSRT o Transaction RSRTRACE Question: 4. Do I have a overall query performance problem? Answers: o Use ST03N -> BW System load values to recognize the problem. Use the number given in table 'Reporting - InfoCubes:Share of total time (s)' to check if one of the columns %OLAP, %DB, %Frontend shows a high number in all InfoCubes. o You need to run ST03N in expert mode to get these values Question: 5. What can I do if the database proportion is high for all queries? Answers: Check: o If the database statistic strategy is set up properly for your DB platform (above all for the BW specific tables) o If database parameter set up accords with SAP Notes and SAP Services (EarlyWatch) o If Buffers, I/O, CPU, memory on the database server are exhausted? o If Cube compression is used regularly o If Database partitioning is used (not available on all DB platforms) Question: 6. What can I do if the OLAP proportion is high for all queries? Answers: Check: o If the CPUs on the application server are exhausted o If the SAP R/3 memory set up is done properly (use TX ST02 to find bottlenecks) o If the read mode of the queries is unfavourable (RSRREPDIR, RSDDSTAT, Customizing default) Question: 7. What can I do if the client proportion is high for all queries? Answer: