SAP J_7L_RKR_GET_ENQUEUE_TABLE Function Module for NOTRANSL: Sperrtabelle vor Rückstellungsanpassung lesen und aktualisieren
J_7L_RKR_GET_ENQUEUE_TABLE is a standard j 7l rkr get enqueue table 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: Sperrtabelle vor Rückstellungsanpassung lesen und aktualisieren 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 j 7l rkr get enqueue table FM, simply by entering the name J_7L_RKR_GET_ENQUEUE_TABLE into the relevant SAP transaction such as SE37 or SE38.
Function Group: J7LRK
Program Name: SAPLJ7LRK
Main Program: SAPLJ7LRK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_7L_RKR_GET_ENQUEUE_TABLE 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 'J_7L_RKR_GET_ENQUEUE_TABLE'"NOTRANSL: Sperrtabelle vor Rückstellungsanpassung lesen und aktualisieren.
EXPORTING
I_MATNR = "Material Number
* I_BUKRS = "Company Code
* I_LAND1 = "Country Key
* I_VRKME = "Sales Unit
* I_NUM = "Cond.item index
* I_DATUM = "Date and Time, Current (Application Server) Date
* I_UZEIT = "Date and Time, Current Application Server Time
IMPORTING
E_FLAG = "Single-Character Indicator
E_NUM = "Cond.item index
E_SUBRC = "Return Value, Return Value after ABAP Statements
E_DATUM = "Date and Time, Current (Application Server) Date
E_UZEIT = "Date and Time, Current Application Server Time
IMPORTING Parameters details for J_7L_RKR_GET_ENQUEUE_TABLE
I_MATNR - Material Number
Data type: J_7LM03-MATNROptional: No
Call by Reference: Yes
I_BUKRS - Company Code
Data type: J_7LM03-BUKRSOptional: Yes
Call by Reference: Yes
I_LAND1 - Country Key
Data type: J_7LM03-LAND1Optional: Yes
Call by Reference: Yes
I_VRKME - Sales Unit
Data type: J_7LM03-VRKMEOptional: Yes
Call by Reference: Yes
I_NUM - Cond.item index
Data type: J_7LL01-REQUESTNROptional: Yes
Call by Reference: Yes
I_DATUM - Date and Time, Current (Application Server) Date
Data type: SY-DATUMOptional: Yes
Call by Reference: Yes
I_UZEIT - Date and Time, Current Application Server Time
Data type: SY-UZEITOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for J_7L_RKR_GET_ENQUEUE_TABLE
E_FLAG - Single-Character Indicator
Data type: CHAR1Optional: No
Call by Reference: Yes
E_NUM - Cond.item index
Data type: J_7LL01-REQUESTNROptional: No
Call by Reference: Yes
E_SUBRC - Return Value, Return Value after ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
E_DATUM - Date and Time, Current (Application Server) Date
Data type: SY-DATUMOptional: No
Call by Reference: Yes
E_UZEIT - Date and Time, Current Application Server Time
Data type: SY-UZEITOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for J_7L_RKR_GET_ENQUEUE_TABLE 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_e_flag | TYPE CHAR1, " | |||
| lv_i_matnr | TYPE J_7LM03-MATNR, " | |||
| lv_e_num | TYPE J_7LL01-REQUESTNR, " | |||
| lv_i_bukrs | TYPE J_7LM03-BUKRS, " | |||
| lv_e_subrc | TYPE SY-SUBRC, " | |||
| lv_i_land1 | TYPE J_7LM03-LAND1, " | |||
| lv_e_datum | TYPE SY-DATUM, " | |||
| lv_i_vrkme | TYPE J_7LM03-VRKME, " | |||
| lv_i_num | TYPE J_7LL01-REQUESTNR, " | |||
| lv_e_uzeit | TYPE SY-UZEIT, " | |||
| lv_i_datum | TYPE SY-DATUM, " | |||
| lv_i_uzeit | TYPE SY-UZEIT. " |
|   CALL FUNCTION 'J_7L_RKR_GET_ENQUEUE_TABLE' "NOTRANSL: Sperrtabelle vor Rückstellungsanpassung lesen und aktualisieren |
| EXPORTING | ||
| I_MATNR | = lv_i_matnr | |
| I_BUKRS | = lv_i_bukrs | |
| I_LAND1 | = lv_i_land1 | |
| I_VRKME | = lv_i_vrkme | |
| I_NUM | = lv_i_num | |
| I_DATUM | = lv_i_datum | |
| I_UZEIT | = lv_i_uzeit | |
| IMPORTING | ||
| E_FLAG | = lv_e_flag | |
| E_NUM | = lv_e_num | |
| E_SUBRC | = lv_e_subrc | |
| E_DATUM | = lv_e_datum | |
| E_UZEIT | = lv_e_uzeit | |
| . " J_7L_RKR_GET_ENQUEUE_TABLE | ||
ABAP code using 7.40 inline data declarations to call FM J_7L_RKR_GET_ENQUEUE_TABLE
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 MATNR FROM J_7LM03 INTO @DATA(ld_i_matnr). | ||||
| "SELECT single REQUESTNR FROM J_7LL01 INTO @DATA(ld_e_num). | ||||
| "SELECT single BUKRS FROM J_7LM03 INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_subrc). | ||||
| "SELECT single LAND1 FROM J_7LM03 INTO @DATA(ld_i_land1). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_e_datum). | ||||
| "SELECT single VRKME FROM J_7LM03 INTO @DATA(ld_i_vrkme). | ||||
| "SELECT single REQUESTNR FROM J_7LL01 INTO @DATA(ld_i_num). | ||||
| "SELECT single UZEIT FROM SY INTO @DATA(ld_e_uzeit). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_datum). | ||||
| "SELECT single UZEIT FROM SY INTO @DATA(ld_i_uzeit). | ||||
Search for further information about these or an SAP related objects