learnabap.blogspot.com
SAP-ABAP Performance factors: 2007-05-13
http://learnabap.blogspot.com/2007_05_13_archive.html
Various ABAP Performance factors, learn how to improve ABAP program performance , ABAP Report performance, SQL Trace. Sunday, May 13, 2007. Performance tuning using GROUPBY. Performance tuning using GROUPBY. Extracts from program ZFAL2002. SELECT KALNR KALKA BWVAR MEEHT SUM( MENGE ). INTO TABLE I CKIS FROM CKIS. AND TVERS = '01'. AND KALKA IN ('01','Z1','Z2'). AND BWVAR IN ('Z01','Z02','Z03','Z04','Z07'). And kkzst = ' '. AND KKZMA = ' '. AND TYPPS = 'E'. AND ( MEEHT = 'MIN' OR MEEHT = 'H' ). AND KEART =...
sapscriptcode.blogspot.com
Sap Script: Picture doesn't show in Print Preview
http://sapscriptcode.blogspot.com/2007/05/picture-doesnt-show-in-print-preview.html
SAP Script Code and Documentaion. Thursday, May 3, 2007. 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. Subscribe to: Post Comments (Atom). Command ...
sapscriptcode.blogspot.com
Sap Script: A Sample SAP Scripts Reports
http://sapscriptcode.blogspot.com/2007/05/sample-sap-scripts-reports.html
SAP Script Code and Documentaion. Thursday, May 3, 2007. A Sample SAP Scripts Reports. CALL FUNCTION 'OPEN FORM'. MAIL APPL OBJECT =. RAW DATA INTERFACE = '*'. NEW ARCHIVE PARAMS =. MAIL OPTIONS = 6. ARCHIVE ERROR = 7. INVALID FAX NUMBER = 8. MORE PARAMS NEEDED IN BATCH = 9. SPOOL ERROR = 10. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO. WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. CALL FUNCTION 'START FORM'. LANGUAGE = ' '. MAIL APPL OBJECT =. SPOOL ERROR = 6. WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
sapscriptcode.blogspot.com
Sap Script: FAQ for Sap Scripts
http://sapscriptcode.blogspot.com/2007/05/faq-for-sap-scripts.html
SAP Script Code and Documentaion. Thursday, May 3, 2007. FAQ for Sap Scripts. What is the difference between a script and a report? Script is a form which has a layout set as per the company standards and can be used for external use too. Generally reports are designed for internal use for in house users. What are the components/elements in sap script? Layout set and Print program and the layout set has windows in it. Can you create a script with out a main window? How can we use tables in sap scripts?
sapscriptcode.blogspot.com
Sap Script: SAP Scripts Boxes/Lines/Shading
http://sapscriptcode.blogspot.com/2007/05/sap-scripts-boxeslinesshading.html
SAP Script Code and Documentaion. Thursday, May 3, 2007. Setting default parameters for a box:. You can use the POSITION and SIZE commands to set default parmeters for a box. BOX XPOS '11.21' MM YPOS '5.31' MM HEIGHT '10' MM WIDTH '20' MM INTENSITY 10 FRAME 0 TW. POSITION XORIGIN '11.21' YORIGIN '5.31' MM. SIZE HEIGHT '2' MM WIDTH '76' MM. BOX FRAME 10 TW INTENSITY 10. This can be usefull if you gave several boxes that share the same parameters. POSITION XORIGIN ' 5' MM YORIGIN ' 10' MM. SAP Certificatio...
sapscriptcode.blogspot.com
Sap Script: How to Upload graphics (IMAGE) to your Sapscript?
http://sapscriptcode.blogspot.com/2007/05/how-to-upload-graphics-image-to-your.html
SAP Script Code and Documentaion. Thursday, May 3, 2007. 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).
abapcode.info
SAP ABAP Online Magazine: SAP Travel Management tables(TMS)
http://www.abapcode.info/2013/01/sap-travel-management-tablestms.html
SAP ABAP Tutorial,Articles and Tips. SAP ABAP Online Magazine. SAP Certification Material Free. Search on this Website. Wednesday, January 2, 2013. SAP Travel Management tables(TMS). Here are list of SAP TMS table which contains cost,history,tax of trip. PTRV ADMIN Travel Management: Administrative Data for. PTRV APPL KEY Application. PTRV APPL KEY TX Application text. PTRV ARCH HEAD Prearchiving FI-TV: Entries from PTRV HEAD. PTRV ARCH PERIO Prearchiving FI-TV: Entries from PTRV PERI. PTRV F COLDEPS Dis...
abapcode.info
SAP ABAP Online Magazine: SAP System Administration: Authorization Concepts
http://www.abapcode.info/2007/05/sap-system-administration-authorization.html
SAP ABAP Tutorial,Articles and Tips. SAP ABAP Online Magazine. SAP Certification Material Free. Search on this Website. Thursday, May 24, 2007. SAP System Administration: Authorization Concepts. Access control in SAP is composed of several concepts:. Program code that calls an authorization check using the authority-check statement. This will look something like:. Authority-check object id field. ACTIVITY: defines the type of activity the user is doing with the data. Possible values are. Extending our pr...