SAP J_7L_SPLITTING_PERIODE Function Module for NOTRANSL: REA: Kokeys in einer Periode ermitteln
J_7L_SPLITTING_PERIODE is a standard j 7l splitting periode 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: Kokeys in einer Periode ermitteln 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 splitting periode FM, simply by entering the name J_7L_SPLITTING_PERIODE into the relevant SAP transaction such as SE37 or SE38.
Function Group: J7LR
Program Name: SAPLJ7LR
Main Program: SAPLJ7LR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_7L_SPLITTING_PERIODE 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_SPLITTING_PERIODE'"NOTRANSL: REA: Kokeys in einer Periode ermitteln.
EXPORTING
* I_DATAB = "Valid-From Date
* I_DATBI = "Valid-To Date
TABLES
I_ENTNA = "
I_LAND1 = "
I_KOKEY = "
* I_VRSIO = "
* I_KOTYP = "
O_SPLITTING_PERIODE = "
IMPORTING Parameters details for J_7L_SPLITTING_PERIODE
I_DATAB - Valid-From Date
Data type: DATABOptional: Yes
Call by Reference: Yes
I_DATBI - Valid-To Date
Data type: DATBIOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for J_7L_SPLITTING_PERIODE
I_ENTNA -
Data type: J7LR1_ENTNA_RANGEOptional: No
Call by Reference: Yes
I_LAND1 -
Data type: J7LR1_LAND1_RANGEOptional: No
Call by Reference: Yes
I_KOKEY -
Data type: J7LR1_KOKEY_RANGEOptional: No
Call by Reference: Yes
I_VRSIO -
Data type: J7LR1_VRSIO_RANGEOptional: Yes
Call by Reference: Yes
I_KOTYP -
Data type: J7LR1_KOTYP_RANGEOptional: Yes
Call by Reference: Yes
O_SPLITTING_PERIODE -
Data type: J_7LSPLITTINGPERIODEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for J_7L_SPLITTING_PERIODE 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_i_datab | TYPE DATAB, " | |||
| lt_i_entna | TYPE STANDARD TABLE OF J7LR1_ENTNA_RANGE, " | |||
| lv_i_datbi | TYPE DATBI, " | |||
| lt_i_land1 | TYPE STANDARD TABLE OF J7LR1_LAND1_RANGE, " | |||
| lt_i_kokey | TYPE STANDARD TABLE OF J7LR1_KOKEY_RANGE, " | |||
| lt_i_vrsio | TYPE STANDARD TABLE OF J7LR1_VRSIO_RANGE, " | |||
| lt_i_kotyp | TYPE STANDARD TABLE OF J7LR1_KOTYP_RANGE, " | |||
| lt_o_splitting_periode | TYPE STANDARD TABLE OF J_7LSPLITTINGPERIODE. " |
|   CALL FUNCTION 'J_7L_SPLITTING_PERIODE' "NOTRANSL: REA: Kokeys in einer Periode ermitteln |
| EXPORTING | ||
| I_DATAB | = lv_i_datab | |
| I_DATBI | = lv_i_datbi | |
| TABLES | ||
| I_ENTNA | = lt_i_entna | |
| I_LAND1 | = lt_i_land1 | |
| I_KOKEY | = lt_i_kokey | |
| I_VRSIO | = lt_i_vrsio | |
| I_KOTYP | = lt_i_kotyp | |
| O_SPLITTING_PERIODE | = lt_o_splitting_periode | |
| . " J_7L_SPLITTING_PERIODE | ||
ABAP code using 7.40 inline data declarations to call FM J_7L_SPLITTING_PERIODE
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