|
Written by Carel Oberholzer
|
|
Monday, 29 January 2007 |
|
Print any spool file from SAP in PDF format. Can be viewed/edited by using Acrobat. You need the full version of Acrobat to edit, but can view and print using the free version. This is a very simple but useful program and needs to be built on to make it into a real handy tool (put in your own code and change the SAPScript before downloading into PDF format). |
|
Read more...
|
|
|
Written by Anon.
|
|
Friday, 26 January 2007 |
|
|
|
Read more...
|
|
|
Written by Judit Rakovits
|
|
Friday, 26 January 2007 |
|
In the purchasing (MM module) you can process the purchase requisitions. The purchase requisitions define primarily the need for a material/service. List the first 100 purchase requisitions at the plant 'PL01' (table EBAN). Then make it possible to change the purchase requisition itself from the list by clicking twice on the row or by using a push-button. |
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 21 January 2007 |
* Declaration of a work area for a Dictionary table TABLES CUSTOMERS. * Internal table used as snapshot of the database table DATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER LINE. * Reading the entries of the database table into an internal table SELECT * FROM CUSTOMERS INTO TABLE ALL_CUSTOMERS. * Displaying each line of an internal table LOOP AT ALL_CUSTOMERS. WRITE: / ALL_CUSTOMERS-NAME. ENDLOOP. |
|
|
Written by Pavan Rachamalla
|
|
Saturday, 20 January 2007 |
|
|
|
Read more...
|
|
|
Written by Pavan Rachamalla
|
|
Saturday, 20 January 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
Save Report Output to a PDF File. This report takes another report as input, and captures the output of that report. The output is then converted to PDF and saved to a local file. This shows how to use some of the PDF function modules, as well as an easy way to create PDF files. |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
REPORT ZV_DELETE . DATA: A LIKE SY-UCOMM. DO 100 TIMES. DO 300 TIMES. GET TIME. ENDDO. A(3) = SY-INDEX.A+3 = '%'. CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = SY-INDEX TEXT = A. ENDDO. WRITE: / 'PROGRESS INDICATOR'. |
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
Provide popup help for the Payroll Admin field |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
Lock/Unlock the ABAP Editor Lock Field |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
Interface between Microsoft Excel and ABAP/4 with up- and downloading of data plus executing Microsoft Excel. |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
Export data from Excel |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
Question : Subject : Dynamic structure does anyone know if it's possible to declare a dynamic structure? my program receives a record-field of 1000, and I need to overlay this record with a structure that needs to be dynamic. Reply : Subject : Dynamic structure if your structure changes from one defined structure to another one, you can try this: ASSIGN yourfield CASTING TYPE yourstructure or CREATE DATA yourdata TYPE yourstructure. If your structure has to be really dynamic - like ALV - you can use the class CL_ALV_TABLE_CREATE. |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 20 January 2007 |
|
This program creates an ALV report for Daily Cash Receipts for a selected date range. |
|
Read more...
|
|