SAP J_7L_FILTER_SPLITKEYS_LIFNR Function Module for NOTRANSL: REA Filter Merkmale Splitting und regionale Abrechnung - Einkauf
J_7L_FILTER_SPLITKEYS_LIFNR is a standard j 7l filter splitkeys lifnr 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 Filter Merkmale Splitting und regionale Abrechnung - Einkauf 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 filter splitkeys lifnr FM, simply by entering the name J_7L_FILTER_SPLITKEYS_LIFNR into the relevant SAP transaction such as SE37 or SE38.
Function Group: J7LSPLIT
Program Name: SAPLJ7LSPLIT
Main Program: SAPLJ7LSPLIT
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_7L_FILTER_SPLITKEYS_LIFNR 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_FILTER_SPLITKEYS_LIFNR'"NOTRANSL: REA Filter Merkmale Splitting und regionale Abrechnung - Einkauf.
EXPORTING
ENTNA = "Recycling Partner
BUKRS = "Company Code
LAND1 = "Country Key
* EKORG = "Purchasing Organization
* LIMRK = "Vendor Master Characteristic
* LIFNR = "Account Number of Vendor or Creditor
* DATUM = SY-DATUM "ABAP System Field: Current Date of Application Server
* J_7LE01_IN = "REA Partner Master Record: General Data (Country-Dependent)
IMPORTING
SPLIT_KEYS = "REA Splitting Characteristics Purchasing
IMPORTING Parameters details for J_7L_FILTER_SPLITKEYS_LIFNR
ENTNA - Recycling Partner
Data type: J_7LC192-ENTNAOptional: No
Call by Reference: Yes
BUKRS - Company Code
Data type: J_7LC192-BUKRSOptional: No
Call by Reference: Yes
LAND1 - Country Key
Data type: J_7LC192-LAND1Optional: No
Call by Reference: Yes
EKORG - Purchasing Organization
Data type: J_7LC192-EKORGOptional: Yes
Call by Reference: Yes
LIMRK - Vendor Master Characteristic
Data type: J_7LC192-LIMRKOptional: Yes
Call by Reference: Yes
LIFNR - Account Number of Vendor or Creditor
Data type: J_7LC192-LIFNROptional: Yes
Call by Reference: Yes
DATUM - ABAP System Field: Current Date of Application Server
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
J_7LE01_IN - REA Partner Master Record: General Data (Country-Dependent)
Data type: J_7LE01Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for J_7L_FILTER_SPLITKEYS_LIFNR
SPLIT_KEYS - REA Splitting Characteristics Purchasing
Data type: J_7LKC192_KEYSOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for J_7L_FILTER_SPLITKEYS_LIFNR 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_7LC192-ENTNA, " | |||
| lv_split_keys | TYPE J_7LKC192_KEYS, " | |||
| lv_bukrs | TYPE J_7LC192-BUKRS, " | |||
| lv_land1 | TYPE J_7LC192-LAND1, " | |||
| lv_ekorg | TYPE J_7LC192-EKORG, " | |||
| lv_limrk | TYPE J_7LC192-LIMRK, " | |||
| lv_lifnr | TYPE J_7LC192-LIFNR, " | |||
| lv_datum | TYPE SY-DATUM, " SY-DATUM | |||
| lv_j_7le01_in | TYPE J_7LE01. " |
|   CALL FUNCTION 'J_7L_FILTER_SPLITKEYS_LIFNR' "NOTRANSL: REA Filter Merkmale Splitting und regionale Abrechnung - Einkauf |
| EXPORTING | ||
| ENTNA | = lv_entna | |
| BUKRS | = lv_bukrs | |
| LAND1 | = lv_land1 | |
| EKORG | = lv_ekorg | |
| LIMRK | = lv_limrk | |
| LIFNR | = lv_lifnr | |
| DATUM | = lv_datum | |
| J_7LE01_IN | = lv_j_7le01_in | |
| IMPORTING | ||
| SPLIT_KEYS | = lv_split_keys | |
| . " J_7L_FILTER_SPLITKEYS_LIFNR | ||
ABAP code using 7.40 inline data declarations to call FM J_7L_FILTER_SPLITKEYS_LIFNR
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_7LC192 INTO @DATA(ld_entna). | ||||
| "SELECT single BUKRS FROM J_7LC192 INTO @DATA(ld_bukrs). | ||||
| "SELECT single LAND1 FROM J_7LC192 INTO @DATA(ld_land1). | ||||
| "SELECT single EKORG FROM J_7LC192 INTO @DATA(ld_ekorg). | ||||
| "SELECT single LIMRK FROM J_7LC192 INTO @DATA(ld_limrk). | ||||
| "SELECT single LIFNR FROM J_7LC192 INTO @DATA(ld_lifnr). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_datum). | ||||
| DATA(ld_datum) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects