SAP LABEL_REPL_LIST_DATA Function Module for NOTRANSL: WWS Etikettierung: Etiketten aus Sortimentsliste ermitteln
LABEL_REPL_LIST_DATA is a standard label repl list data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: WWS Etikettierung: Etiketten aus Sortimentsliste ermitteln processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for label repl list data FM, simply by entering the name LABEL_REPL_LIST_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: WEBB
Program Name: SAPLWEBB
Main Program:
Appliation area: W
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LABEL_REPL_LIST_DATA pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'LABEL_REPL_LIST_DATA'"NOTRANSL: WWS Etikettierung: Etiketten aus Sortimentsliste ermitteln.
EXPORTING
* PI_DATE_BEGIN = SY-DATUM "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PI_DATE_END = SY-DATUM "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PI_POPUP = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PI_INCL_PROC = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
TABLES
* TI_SO_STORE = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* TI_SO_BBTYP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* TE_WETI = "DE-EN-LANG-SWITCH-NO-TRANSLATION
EXCEPTIONS
NO_VERSION = 1 NO_STRUCTURE = 2 NO_UPDATE = 3
IMPORTING Parameters details for LABEL_REPL_LIST_DATA
PI_DATE_BEGIN - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
PI_DATE_END - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
PI_POPUP - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
PI_INCL_PROC - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for LABEL_REPL_LIST_DATA
TI_SO_STORE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WDL_LOCOptional: Yes
Call by Reference: No ( called with pass by value option)
TI_SO_BBTYP - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WDL_BBTOptional: Yes
Call by Reference: No ( called with pass by value option)
TE_WETI - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WETIOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_VERSION - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_STRUCTURE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_UPDATE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for LABEL_REPL_LIST_DATA Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_no_version | TYPE STRING, " | |||
| lt_ti_so_store | TYPE STANDARD TABLE OF WDL_LOC, " | |||
| lv_pi_date_begin | TYPE SY-DATUM, " SY-DATUM | |||
| lv_pi_date_end | TYPE SY-DATUM, " SY-DATUM | |||
| lt_ti_so_bbtyp | TYPE STANDARD TABLE OF WDL_BBT, " | |||
| lv_no_structure | TYPE WDL_BBT, " | |||
| lt_te_weti | TYPE STANDARD TABLE OF WETI, " | |||
| lv_pi_popup | TYPE C, " 'X' | |||
| lv_no_update | TYPE C, " | |||
| lv_pi_incl_proc | TYPE C. " ' ' |
|   CALL FUNCTION 'LABEL_REPL_LIST_DATA' "NOTRANSL: WWS Etikettierung: Etiketten aus Sortimentsliste ermitteln |
| EXPORTING | ||
| PI_DATE_BEGIN | = lv_pi_date_begin | |
| PI_DATE_END | = lv_pi_date_end | |
| PI_POPUP | = lv_pi_popup | |
| PI_INCL_PROC | = lv_pi_incl_proc | |
| TABLES | ||
| TI_SO_STORE | = lt_ti_so_store | |
| TI_SO_BBTYP | = lt_ti_so_bbtyp | |
| TE_WETI | = lt_te_weti | |
| EXCEPTIONS | ||
| NO_VERSION = 1 | ||
| NO_STRUCTURE = 2 | ||
| NO_UPDATE = 3 | ||
| . " LABEL_REPL_LIST_DATA | ||
ABAP code using 7.40 inline data declarations to call FM LABEL_REPL_LIST_DATA
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single DATUM FROM SY INTO @DATA(ld_pi_date_begin). | ||||
| DATA(ld_pi_date_begin) | = SY-DATUM. | |||
| "SELECT single DATUM FROM SY INTO @DATA(ld_pi_date_end). | ||||
| DATA(ld_pi_date_end) | = SY-DATUM. | |||
| DATA(ld_pi_popup) | = 'X'. | |||
| DATA(ld_pi_incl_proc) | = ' '. | |||
Search for further information about these or an SAP related objects