SAP J_7L_READ_FILTER Function Module for NOTRANSL: REA Datenfilter Auswertung Filter zu Land, R-Partner und Buchung
J_7L_READ_FILTER is a standard j 7l read filter 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 Datenfilter Auswertung Filter zu Land, R-Partner und Buchung 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 read filter FM, simply by entering the name J_7L_READ_FILTER into the relevant SAP transaction such as SE37 or SE38.
Function Group: J7LF
Program Name: SAPLJ7LF
Main Program: SAPLJ7LF
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_7L_READ_FILTER 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_READ_FILTER'"NOTRANSL: REA Datenfilter Auswertung Filter zu Land, R-Partner und Buchung.
EXPORTING
I_ENTNA = "Recycling Partner
I_LAND1 = "Country
I_BUKRS = "Company Code
I_HRKFTDQ = "Data Source
IMPORTING
ES_J_7LC08_R = "
ES_J_7LC08_G = "
TABLES
* T_J_7LC03 = "
* T_J_7LC29 = "
* T_J_7LC32 = "
* T_J_7LC41 = "
* T_J_7LC44 = "
* T_J_7LC04 = "
* T_J_7LC05 = "
* T_J_7LC06 = "
* T_J_7LC07 = "
* T_J_7LC13 = "
* T_J_7LC14 = "
* T_J_7LC15 = "
* T_J_7LC28 = "
IMPORTING Parameters details for J_7L_READ_FILTER
I_ENTNA - Recycling Partner
Data type: J_7LC42-ENTNAOptional: No
Call by Reference: Yes
I_LAND1 - Country
Data type: J_7LC42-LAND1Optional: No
Call by Reference: Yes
I_BUKRS - Company Code
Data type: J_7LC42-BUKRSOptional: No
Call by Reference: Yes
I_HRKFTDQ - Data Source
Data type: J_7LC44-HRKFTDQOptional: No
Call by Reference: Yes
EXPORTING Parameters details for J_7L_READ_FILTER
ES_J_7LC08_R -
Data type: J_7LC08Optional: No
Call by Reference: Yes
ES_J_7LC08_G -
Data type: J_7LC08Optional: No
Call by Reference: Yes
TABLES Parameters details for J_7L_READ_FILTER
T_J_7LC03 -
Data type: J_7LC03Optional: Yes
Call by Reference: Yes
T_J_7LC29 -
Data type: J_7LC29Optional: Yes
Call by Reference: Yes
T_J_7LC32 -
Data type: J_7LC32Optional: Yes
Call by Reference: Yes
T_J_7LC41 -
Data type: J_7LC41Optional: Yes
Call by Reference: Yes
T_J_7LC44 -
Data type: J_7LC44Optional: Yes
Call by Reference: Yes
T_J_7LC04 -
Data type: J_7LC04Optional: Yes
Call by Reference: Yes
T_J_7LC05 -
Data type: J_7LC05Optional: Yes
Call by Reference: Yes
T_J_7LC06 -
Data type: J_7LC06Optional: Yes
Call by Reference: Yes
T_J_7LC07 -
Data type: J_7LC07Optional: Yes
Call by Reference: Yes
T_J_7LC13 -
Data type: J_7LC13Optional: Yes
Call by Reference: Yes
T_J_7LC14 -
Data type: J_7LC14Optional: Yes
Call by Reference: Yes
T_J_7LC15 -
Data type: J_7LC15Optional: Yes
Call by Reference: Yes
T_J_7LC28 -
Data type: J_7LC28Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for J_7L_READ_FILTER 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_entna | TYPE J_7LC42-ENTNA, " | |||
| lt_t_j_7lc03 | TYPE STANDARD TABLE OF J_7LC03, " | |||
| lv_es_j_7lc08_r | TYPE J_7LC08, " | |||
| lt_t_j_7lc29 | TYPE STANDARD TABLE OF J_7LC29, " | |||
| lt_t_j_7lc32 | TYPE STANDARD TABLE OF J_7LC32, " | |||
| lt_t_j_7lc41 | TYPE STANDARD TABLE OF J_7LC41, " | |||
| lt_t_j_7lc44 | TYPE STANDARD TABLE OF J_7LC44, " | |||
| lv_i_land1 | TYPE J_7LC42-LAND1, " | |||
| lt_t_j_7lc04 | TYPE STANDARD TABLE OF J_7LC04, " | |||
| lv_es_j_7lc08_g | TYPE J_7LC08, " | |||
| lv_i_bukrs | TYPE J_7LC42-BUKRS, " | |||
| lt_t_j_7lc05 | TYPE STANDARD TABLE OF J_7LC05, " | |||
| lv_i_hrkftdq | TYPE J_7LC44-HRKFTDQ, " | |||
| lt_t_j_7lc06 | TYPE STANDARD TABLE OF J_7LC06, " | |||
| lt_t_j_7lc07 | TYPE STANDARD TABLE OF J_7LC07, " | |||
| lt_t_j_7lc13 | TYPE STANDARD TABLE OF J_7LC13, " | |||
| lt_t_j_7lc14 | TYPE STANDARD TABLE OF J_7LC14, " | |||
| lt_t_j_7lc15 | TYPE STANDARD TABLE OF J_7LC15, " | |||
| lt_t_j_7lc28 | TYPE STANDARD TABLE OF J_7LC28. " |
|   CALL FUNCTION 'J_7L_READ_FILTER' "NOTRANSL: REA Datenfilter Auswertung Filter zu Land, R-Partner und Buchung |
| EXPORTING | ||
| I_ENTNA | = lv_i_entna | |
| I_LAND1 | = lv_i_land1 | |
| I_BUKRS | = lv_i_bukrs | |
| I_HRKFTDQ | = lv_i_hrkftdq | |
| IMPORTING | ||
| ES_J_7LC08_R | = lv_es_j_7lc08_r | |
| ES_J_7LC08_G | = lv_es_j_7lc08_g | |
| TABLES | ||
| T_J_7LC03 | = lt_t_j_7lc03 | |
| T_J_7LC29 | = lt_t_j_7lc29 | |
| T_J_7LC32 | = lt_t_j_7lc32 | |
| T_J_7LC41 | = lt_t_j_7lc41 | |
| T_J_7LC44 | = lt_t_j_7lc44 | |
| T_J_7LC04 | = lt_t_j_7lc04 | |
| T_J_7LC05 | = lt_t_j_7lc05 | |
| T_J_7LC06 | = lt_t_j_7lc06 | |
| T_J_7LC07 | = lt_t_j_7lc07 | |
| T_J_7LC13 | = lt_t_j_7lc13 | |
| T_J_7LC14 | = lt_t_j_7lc14 | |
| T_J_7LC15 | = lt_t_j_7lc15 | |
| T_J_7LC28 | = lt_t_j_7lc28 | |
| . " J_7L_READ_FILTER | ||
ABAP code using 7.40 inline data declarations to call FM J_7L_READ_FILTER
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_7LC42 INTO @DATA(ld_i_entna). | ||||
| "SELECT single LAND1 FROM J_7LC42 INTO @DATA(ld_i_land1). | ||||
| "SELECT single BUKRS FROM J_7LC42 INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single HRKFTDQ FROM J_7LC44 INTO @DATA(ld_i_hrkftdq). | ||||
Search for further information about these or an SAP related objects