SAP LXYRD_CHECK_LIST_INIT Function Module for Execute check in or out to yard by RF
LXYRD_CHECK_LIST_INIT is a standard lxyrd check list init SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Execute check in or out to yard by RF 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 lxyrd check list init FM, simply by entering the name LXYRD_CHECK_LIST_INIT into the relevant SAP transaction such as SE37 or SE38.
Function Group: LXYRD_PRES
Program Name: SAPLLXYRD_PRES
Main Program: SAPLLXYRD_PRES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LXYRD_CHECK_LIST_INIT 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 'LXYRD_CHECK_LIST_INIT'"Execute check in or out to yard by RF.
CHANGING
CS_TRPRP = "
CT_ACTIV = "Activity - RF-display - table type
CS_PARAM = "Activity - RF-display structure
CT_PARAM = "
CT_STEP_VERIF = "
CT_MENU = "
CT_STEP = "
CT_LYACT = "Activities
CHANGING Parameters details for LXYRD_CHECK_LIST_INIT
CS_TRPRP -
Data type: LMBPT_TRPRPOptional: No
Call by Reference: Yes
CT_ACTIV - Activity - RF-display - table type
Data type: LXYRD_ACT_RFDISPLAY_TOptional: No
Call by Reference: Yes
CS_PARAM - Activity - RF-display structure
Data type: LXYRD_ACT_RFINPUTOptional: No
Call by Reference: Yes
CT_PARAM -
Data type: LMBPT_IT_PARAMOptional: No
Call by Reference: Yes
CT_STEP_VERIF -
Data type: LMBPT_IT_VERIF_PROFILEOptional: No
Call by Reference: Yes
CT_MENU -
Data type: LMBPT_IT_MENUOptional: No
Call by Reference: Yes
CT_STEP -
Data type: LMBPT_IT_SCRSTACKOptional: No
Call by Reference: Yes
CT_LYACT - Activities
Data type: LYACT_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for LXYRD_CHECK_LIST_INIT 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_cs_trprp | TYPE LMBPT_TRPRP, " | |||
| lv_ct_activ | TYPE LXYRD_ACT_RFDISPLAY_T, " | |||
| lv_cs_param | TYPE LXYRD_ACT_RFINPUT, " | |||
| lv_ct_param | TYPE LMBPT_IT_PARAM, " | |||
| lv_ct_step_verif | TYPE LMBPT_IT_VERIF_PROFILE, " | |||
| lv_ct_menu | TYPE LMBPT_IT_MENU, " | |||
| lv_ct_step | TYPE LMBPT_IT_SCRSTACK, " | |||
| lv_ct_lyact | TYPE LYACT_T. " |
|   CALL FUNCTION 'LXYRD_CHECK_LIST_INIT' "Execute check in or out to yard by RF |
| CHANGING | ||
| CS_TRPRP | = lv_cs_trprp | |
| CT_ACTIV | = lv_ct_activ | |
| CS_PARAM | = lv_cs_param | |
| CT_PARAM | = lv_ct_param | |
| CT_STEP_VERIF | = lv_ct_step_verif | |
| CT_MENU | = lv_ct_menu | |
| CT_STEP | = lv_ct_step | |
| CT_LYACT | = lv_ct_lyact | |
| . " LXYRD_CHECK_LIST_INIT | ||
ABAP code using 7.40 inline data declarations to call FM LXYRD_CHECK_LIST_INIT
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.Search for further information about these or an SAP related objects