SAP C1AR_EST07_KEYCHECK_REC_ADJUST Function Module for NOTRANSL: EH&S: Prüfen der logischen Schlüssel über ZeitRÄUME mit DS-Anpas
C1AR_EST07_KEYCHECK_REC_ADJUST is a standard c1ar est07 keycheck rec adjust 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: EH&S: Prüfen der logischen Schlüssel über ZeitRÄUME mit DS-Anpas 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 c1ar est07 keycheck rec adjust FM, simply by entering the name C1AR_EST07_KEYCHECK_REC_ADJUST into the relevant SAP transaction such as SE37 or SE38.
Function Group: C1AR
Program Name: SAPLC1AR
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C1AR_EST07_KEYCHECK_REC_ADJUST 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 'C1AR_EST07_KEYCHECK_REC_ADJUST'"NOTRANSL: EH&S: Prüfen der logischen Schlüssel über ZeitRÄUME mit DS-Anpas.
EXPORTING
I_LINEMOD = "Processing status or mode of a record/step loop line
I_RECN_MASTER = "Sequential Number of Data Record
* I_FLG_WITH_BUFFER_CHECK = ESP1_TRUE "
IMPORTING
E_FLG_ERROR = "
E_FLG_WARNING = "
CHANGING
X_IO_WA = "EHS: IOTAB for transport approval (DGM)
IMPORTING Parameters details for C1AR_EST07_KEYCHECK_REC_ADJUST
I_LINEMOD - Processing status or mode of a record/step loop line
Data type: RCGSTDIOT-LINEMODOptional: No
Call by Reference: No ( called with pass by value option)
I_RECN_MASTER - Sequential Number of Data Record
Data type: ESERECNOptional: No
Call by Reference: No ( called with pass by value option)
I_FLG_WITH_BUFFER_CHECK -
Data type: ESP1_BOOLEANDefault: ESP1_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for C1AR_EST07_KEYCHECK_REC_ADJUST
E_FLG_ERROR -
Data type: ESP1_BOOLEANOptional: No
Call by Reference: No ( called with pass by value option)
E_FLG_WARNING -
Data type: ESP1_BOOLEANOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for C1AR_EST07_KEYCHECK_REC_ADJUST
X_IO_WA - EHS: IOTAB for transport approval (DGM)
Data type: RCG07IOTOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for C1AR_EST07_KEYCHECK_REC_ADJUST 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_x_io_wa | TYPE RCG07IOT, " | |||
| lv_i_linemod | TYPE RCGSTDIOT-LINEMOD, " | |||
| lv_e_flg_error | TYPE ESP1_BOOLEAN, " | |||
| lv_e_flg_warning | TYPE ESP1_BOOLEAN, " | |||
| lv_i_recn_master | TYPE ESERECN, " | |||
| lv_i_flg_with_buffer_check | TYPE ESP1_BOOLEAN. " ESP1_TRUE |
|   CALL FUNCTION 'C1AR_EST07_KEYCHECK_REC_ADJUST' "NOTRANSL: EH&S: Prüfen der logischen Schlüssel über ZeitRÄUME mit DS-Anpas |
| EXPORTING | ||
| I_LINEMOD | = lv_i_linemod | |
| I_RECN_MASTER | = lv_i_recn_master | |
| I_FLG_WITH_BUFFER_CHECK | = lv_i_flg_with_buffer_check | |
| IMPORTING | ||
| E_FLG_ERROR | = lv_e_flg_error | |
| E_FLG_WARNING | = lv_e_flg_warning | |
| CHANGING | ||
| X_IO_WA | = lv_x_io_wa | |
| . " C1AR_EST07_KEYCHECK_REC_ADJUST | ||
ABAP code using 7.40 inline data declarations to call FM C1AR_EST07_KEYCHECK_REC_ADJUST
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 LINEMOD FROM RCGSTDIOT INTO @DATA(ld_i_linemod). | ||||
| DATA(ld_i_flg_with_buffer_check) | = ESP1_TRUE. | |||
Search for further information about these or an SAP related objects