LABEL_REPL_LIST_DATA is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name LABEL_REPL_LIST_DATA into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
WEBB
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'LABEL_REPL_LIST_DATA' "
* EXPORTING
* pi_date_begin = SY-DATUM " sy-datum
* pi_date_end = SY-DATUM " sy-datum
* pi_popup = 'X' " c
* pi_incl_proc = ' ' " c
* TABLES
* ti_so_store = " wdl_loc
* ti_so_bbtyp = " wdl_bbt
* te_weti = " weti
EXCEPTIONS
NO_VERSION = 1 "
NO_STRUCTURE = 2 "
NO_UPDATE = 3 "
. " LABEL_REPL_LIST_DATA
The ABAP code below is a full code listing to execute function module LABEL_REPL_LIST_DATA including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_ti_so_store | TYPE STANDARD TABLE OF WDL_LOC,"TABLES PARAM |
| wa_ti_so_store | LIKE LINE OF it_ti_so_store , |
| it_ti_so_bbtyp | TYPE STANDARD TABLE OF WDL_BBT,"TABLES PARAM |
| wa_ti_so_bbtyp | LIKE LINE OF it_ti_so_bbtyp , |
| it_te_weti | TYPE STANDARD TABLE OF WETI,"TABLES PARAM |
| wa_te_weti | LIKE LINE OF it_te_weti . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_pi_date_begin | TYPE SY-DATUM , |
| it_ti_so_store | TYPE STANDARD TABLE OF WDL_LOC , |
| wa_ti_so_store | LIKE LINE OF it_ti_so_store, |
| ld_pi_date_end | TYPE SY-DATUM , |
| it_ti_so_bbtyp | TYPE STANDARD TABLE OF WDL_BBT , |
| wa_ti_so_bbtyp | LIKE LINE OF it_ti_so_bbtyp, |
| ld_pi_popup | TYPE C , |
| it_te_weti | TYPE STANDARD TABLE OF WETI , |
| wa_te_weti | LIKE LINE OF it_te_weti, |
| ld_pi_incl_proc | TYPE C . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name LABEL_REPL_LIST_DATA or its description.