SAP PYDE_LSTB_NULLMELDUNG Function Module for
PYDE_LSTB_NULLMELDUNG is a standard pyde lstb nullmeldung SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 pyde lstb nullmeldung FM, simply by entering the name PYDE_LSTB_NULLMELDUNG into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRST_ELSTER
Program Name: SAPLHRST_ELSTER
Main Program: SAPLHRST_ELSTER
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PYDE_LSTB_NULLMELDUNG 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 'PYDE_LSTB_NULLMELDUNG'".
EXPORTING
P_KEY_P01T = "
* P_UPDATE = ' ' "
* P_REPID = SY-REPID "
TABLES
* T_ADMIN = "
* T_HINZ = "
* T_VBEZ = "
* T_SVBEZ = "
* T_ELSTAM = "
* T_ADMIN_STAT = "
* T_LST = "
* T_LST1 = "
* T_LST2 = "
* T_KIST = "
* T_STKL = "
* T_KIFB = "
* T_FRBJ = "
EXCEPTIONS
ERROR_ON_UPDATE = 1
IMPORTING Parameters details for PYDE_LSTB_NULLMELDUNG
P_KEY_P01T -
Data type: HRDEST_S_KEYOptional: No
Call by Reference: Yes
P_UPDATE -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
P_REPID -
Data type: SY-REPIDDefault: SY-REPID
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for PYDE_LSTB_NULLMELDUNG
T_ADMIN -
Data type: P01T_ADMINOptional: Yes
Call by Reference: Yes
T_HINZ -
Data type: P01T_HINZOptional: Yes
Call by Reference: Yes
T_VBEZ -
Data type: P01T_VBEZOptional: Yes
Call by Reference: Yes
T_SVBEZ -
Data type: P01T_SVBEZOptional: Yes
Call by Reference: Yes
T_ELSTAM -
Data type: P01T_ELSTAMOptional: Yes
Call by Reference: Yes
T_ADMIN_STAT -
Data type: P01T_ADMIN_STATOptional: Yes
Call by Reference: Yes
T_LST -
Data type: P01T_LSTOptional: Yes
Call by Reference: Yes
T_LST1 -
Data type: P01T_LST1Optional: Yes
Call by Reference: Yes
T_LST2 -
Data type: P01T_LST2Optional: Yes
Call by Reference: Yes
T_KIST -
Data type: P01T_KISTOptional: Yes
Call by Reference: Yes
T_STKL -
Data type: P01T_STKLOptional: Yes
Call by Reference: Yes
T_KIFB -
Data type: P01T_KIFBOptional: Yes
Call by Reference: Yes
T_FRBJ -
Data type: P01T_FRBJOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
ERROR_ON_UPDATE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for PYDE_LSTB_NULLMELDUNG 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: | ||||
| lt_t_admin | TYPE STANDARD TABLE OF P01T_ADMIN, " | |||
| lv_p_key_p01t | TYPE HRDEST_S_KEY, " | |||
| lv_error_on_update | TYPE HRDEST_S_KEY, " | |||
| lt_t_hinz | TYPE STANDARD TABLE OF P01T_HINZ, " | |||
| lt_t_vbez | TYPE STANDARD TABLE OF P01T_VBEZ, " | |||
| lt_t_svbez | TYPE STANDARD TABLE OF P01T_SVBEZ, " | |||
| lt_t_elstam | TYPE STANDARD TABLE OF P01T_ELSTAM, " | |||
| lv_p_update | TYPE XFELD, " SPACE | |||
| lt_t_admin_stat | TYPE STANDARD TABLE OF P01T_ADMIN_STAT, " | |||
| lt_t_lst | TYPE STANDARD TABLE OF P01T_LST, " | |||
| lv_p_repid | TYPE SY-REPID, " SY-REPID | |||
| lt_t_lst1 | TYPE STANDARD TABLE OF P01T_LST1, " | |||
| lt_t_lst2 | TYPE STANDARD TABLE OF P01T_LST2, " | |||
| lt_t_kist | TYPE STANDARD TABLE OF P01T_KIST, " | |||
| lt_t_stkl | TYPE STANDARD TABLE OF P01T_STKL, " | |||
| lt_t_kifb | TYPE STANDARD TABLE OF P01T_KIFB, " | |||
| lt_t_frbj | TYPE STANDARD TABLE OF P01T_FRBJ. " |
|   CALL FUNCTION 'PYDE_LSTB_NULLMELDUNG' " |
| EXPORTING | ||
| P_KEY_P01T | = lv_p_key_p01t | |
| P_UPDATE | = lv_p_update | |
| P_REPID | = lv_p_repid | |
| TABLES | ||
| T_ADMIN | = lt_t_admin | |
| T_HINZ | = lt_t_hinz | |
| T_VBEZ | = lt_t_vbez | |
| T_SVBEZ | = lt_t_svbez | |
| T_ELSTAM | = lt_t_elstam | |
| T_ADMIN_STAT | = lt_t_admin_stat | |
| T_LST | = lt_t_lst | |
| T_LST1 | = lt_t_lst1 | |
| T_LST2 | = lt_t_lst2 | |
| T_KIST | = lt_t_kist | |
| T_STKL | = lt_t_stkl | |
| T_KIFB | = lt_t_kifb | |
| T_FRBJ | = lt_t_frbj | |
| EXCEPTIONS | ||
| ERROR_ON_UPDATE = 1 | ||
| . " PYDE_LSTB_NULLMELDUNG | ||
ABAP code using 7.40 inline data declarations to call FM PYDE_LSTB_NULLMELDUNG
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.| DATA(ld_p_update) | = ' '. | |||
| "SELECT single REPID FROM SY INTO @DATA(ld_p_repid). | ||||
| DATA(ld_p_repid) | = SY-REPID. | |||
Search for further information about these or an SAP related objects