|
Written by Anon.
|
|
Tuesday, 13 February 2007 |
|
3 examples of how to define and use macros. |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 13 February 2007 |
|
Using GUI_DOWNLOAD to download a file to your PC. |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 13 February 2007 |
|
2 examples on using a dataset. |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Monday, 12 February 2007 |
|
* See program RSSPO410 for examples of this FM DATA: returncode LIKE sy-subrc, filestring TYPE string. DATA: BEGIN OF fields OCCURS 2. INCLUDE STRUCTURE sval. DATA: END OF fields. CLEAR fields. fields-tabname = 'RLGRAP'. fields-fieldname = 'FILENAME'. fields-value = 'C:\TEST.XLS'. fields-field_attr = '00'. APPEND fields. CALL FUNCTION 'POPUP_GET_VALUES' EXPORTING POPUP_TITLE = TEXT-026 IMPORTING RETURNCODE = RETURNCODE TABLES FIELDS = fields EXCEPTIONS ERROR_IN_FIELDS = 1 OTHERS = 2. CHECK RETURNCODE EQ SPACE. filestring = fields-value. |
|
Last Updated ( Monday, 12 February 2007 )
|
|
|
Written by Kevin Wilson
|
|
Sunday, 11 February 2007 |
|
To put a delete button on the screen (Fcode = DELETE) with a checkbox on each line. |
|
Last Updated ( Monday, 12 February 2007 )
|
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Saturday, 10 February 2007 |
|
Report using a function module to retrieve and print the document flow for a sales order. |
|
Last Updated ( Saturday, 10 February 2007 )
|
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Thursday, 08 February 2007 |
|
Based on a t-code show different selection screen options... |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Wednesday, 07 February 2007 |
|
Here is a short example of using list boxes on selection screens: |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Wednesday, 07 February 2007 |
|
A step by step procedure in code showing you how to create a tree report. |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Wednesday, 07 February 2007 |
|
Use this technique (calling RS_REFRESH_FROM_SELECTOPTIONS) to refresh data on your reports. |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 31 January 2007 |
|
Here is an example of how to FTP a file from the Application server to a remote server using standard SAP functions. |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 31 January 2007 |
|
Here is an example of manipulating lists (the output of a report) in several different ways. It includes saving the list in various formats (HTML, DAT (tab delimited, good for sending to spreadsheet/database programs), ASCII, or RTF (good for sending to word processors). |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 31 January 2007 |
|
This example shows how to print out the select options and parameters that the user has entered on the selection screen. |
|
Read more...
|
|
|
Written by Kevin Barter
|
|
Wednesday, 31 January 2007 |
|
Here is some sample code that allows you to retrieve and display a directory listing from the Application Server. This has only been tested on UNIX machines. |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 31 January 2007 |
|
This report shows an example of how to have a tabbed selection screen as part of your report selection screen. This is done using subscreens, and is only available in the 4.X series (I have only tested it on 4.6 systems). This example is the start of a BDC program, and separates the different selection criteria onto different pages. |
|
Read more...
|
|