SAP J_7LC36_KKOND_CHECK Function Module for NOTRANSL: REA Prüfung Kopfkondition C36 C37 C38
J_7LC36_KKOND_CHECK is a standard j 7lc36 kkond check 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: REA Prüfung Kopfkondition C36 C37 C38 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 7lc36 kkond check FM, simply by entering the name J_7LC36_KKOND_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: J7LC
Program Name: SAPLJ7LC
Main Program: SAPLJ7LC
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_7LC36_KKOND_CHECK 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_7LC36_KKOND_CHECK'"NOTRANSL: REA Prüfung Kopfkondition C36 C37 C38.
EXPORTING
ENTNA = "Recycling Partner
LAND1 = "Country Key
KOKEY = "Condition Type Assignment Key
DATAB = "Valid-From Date
DATBI = "Valid To Date
EXCEPTIONS
C36_ERROR = 1 C38_ERROR = 2 C37_ERROR = 3
IMPORTING Parameters details for J_7LC36_KKOND_CHECK
ENTNA - Recycling Partner
Data type: J_7LC37-ENTNAOptional: No
Call by Reference: Yes
LAND1 - Country Key
Data type: J_7LC37-LAND1Optional: No
Call by Reference: Yes
KOKEY - Condition Type Assignment Key
Data type: J_7LC37-KOKEYOptional: No
Call by Reference: Yes
DATAB - Valid-From Date
Data type: J_7LC37-DATABOptional: No
Call by Reference: Yes
DATBI - Valid To Date
Data type: J_7LC37-DATBIOptional: No
Call by Reference: Yes
EXCEPTIONS details
C36_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
C38_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
C37_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for J_7LC36_KKOND_CHECK 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_entna | TYPE J_7LC37-ENTNA, " | |||
| lv_c36_error | TYPE J_7LC37, " | |||
| lv_land1 | TYPE J_7LC37-LAND1, " | |||
| lv_c38_error | TYPE J_7LC37, " | |||
| lv_kokey | TYPE J_7LC37-KOKEY, " | |||
| lv_c37_error | TYPE J_7LC37, " | |||
| lv_datab | TYPE J_7LC37-DATAB, " | |||
| lv_datbi | TYPE J_7LC37-DATBI. " |
|   CALL FUNCTION 'J_7LC36_KKOND_CHECK' "NOTRANSL: REA Prüfung Kopfkondition C36 C37 C38 |
| EXPORTING | ||
| ENTNA | = lv_entna | |
| LAND1 | = lv_land1 | |
| KOKEY | = lv_kokey | |
| DATAB | = lv_datab | |
| DATBI | = lv_datbi | |
| EXCEPTIONS | ||
| C36_ERROR = 1 | ||
| C38_ERROR = 2 | ||
| C37_ERROR = 3 | ||
| . " J_7LC36_KKOND_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM J_7LC36_KKOND_CHECK
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 ENTNA FROM J_7LC37 INTO @DATA(ld_entna). | ||||
| "SELECT single LAND1 FROM J_7LC37 INTO @DATA(ld_land1). | ||||
| "SELECT single KOKEY FROM J_7LC37 INTO @DATA(ld_kokey). | ||||
| "SELECT single DATAB FROM J_7LC37 INTO @DATA(ld_datab). | ||||
| "SELECT single DATBI FROM J_7LC37 INTO @DATA(ld_datbi). | ||||
Search for further information about these or an SAP related objects