SAP J_7L_SXXX_FILTER Function Module for NOTRANSL: REA Datenfilter Infostruktur









J_7L_SXXX_FILTER is a standard j 7l sxxx 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 Infostruktur 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 sxxx filter FM, simply by entering the name J_7L_SXXX_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_SXXX_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_SXXX_FILTER'"NOTRANSL: REA Datenfilter Infostruktur
EXPORTING
MATNR = "
* PSTYV = "
* J_7LC08 = "
* I_PROTOKOLL = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FKART = "
VKORG = "
VTWEG = "
* SPART = "
* KUNNR = "
* PRODH = "
* MATKL = "
* MTART = "

TABLES
T_J_7LC03 = "
T_J_7LC04 = "
T_J_7LC05 = "
T_J_7LC06 = "
T_J_7LC07 = "
* T_J_7LC28 = "
* T_J_7LC32 = "

EXCEPTIONS
NOT_IN_RANGE = 1 PARAMETER_MISSING = 2
.



IMPORTING Parameters details for J_7L_SXXX_FILTER

MATNR -

Data type: MARA-MATNR
Optional: No
Call by Reference: Yes

PSTYV -

Data type: VBRP-PSTYV
Optional: Yes
Call by Reference: Yes

J_7LC08 -

Data type: J_7LC08
Optional: Yes
Call by Reference: Yes

I_PROTOKOLL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

FKART -

Data type: VBRK-FKART
Optional: Yes
Call by Reference: Yes

VKORG -

Data type: VBRK-VKORG
Optional: No
Call by Reference: Yes

VTWEG -

Data type: VBRK-VTWEG
Optional: No
Call by Reference: Yes

SPART -

Data type: VBRP-SPART
Optional: Yes
Call by Reference: Yes

KUNNR -

Data type: KNA1-KUNNR
Optional: Yes
Call by Reference: Yes

PRODH -

Data type: VBRP-PRODH
Optional: Yes
Call by Reference: Yes

MATKL -

Data type: MARA-MATKL
Optional: Yes
Call by Reference: Yes

MTART -

Data type: MARA-MTART
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for J_7L_SXXX_FILTER

T_J_7LC03 -

Data type: J_7LC03
Optional: No
Call by Reference: No ( called with pass by value option)

T_J_7LC04 -

Data type: J_7LC04
Optional: No
Call by Reference: No ( called with pass by value option)

T_J_7LC05 -

Data type: J_7LC05
Optional: No
Call by Reference: No ( called with pass by value option)

T_J_7LC06 -

Data type: J_7LC06
Optional: No
Call by Reference: No ( called with pass by value option)

T_J_7LC07 -

Data type: J_7LC07
Optional: No
Call by Reference: No ( called with pass by value option)

T_J_7LC28 -

Data type: J_7LC28
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_J_7LC32 -

Data type: J_7LC32
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NOT_IN_RANGE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

PARAMETER_MISSING -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for J_7L_SXXX_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_matnr  TYPE MARA-MATNR, "   
lt_t_j_7lc03  TYPE STANDARD TABLE OF J_7LC03, "   
lv_not_in_range  TYPE J_7LC03, "   
lv_pstyv  TYPE VBRP-PSTYV, "   
lv_j_7lc08  TYPE J_7LC08, "   
lv_i_protokoll  TYPE XFELD, "   SPACE
lv_fkart  TYPE VBRK-FKART, "   
lt_t_j_7lc04  TYPE STANDARD TABLE OF J_7LC04, "   
lv_parameter_missing  TYPE J_7LC04, "   
lv_vkorg  TYPE VBRK-VKORG, "   
lt_t_j_7lc05  TYPE STANDARD TABLE OF J_7LC05, "   
lv_vtweg  TYPE VBRK-VTWEG, "   
lt_t_j_7lc06  TYPE STANDARD TABLE OF J_7LC06, "   
lv_spart  TYPE VBRP-SPART, "   
lt_t_j_7lc07  TYPE STANDARD TABLE OF J_7LC07, "   
lv_kunnr  TYPE KNA1-KUNNR, "   
lt_t_j_7lc28  TYPE STANDARD TABLE OF J_7LC28, "   
lv_prodh  TYPE VBRP-PRODH, "   
lt_t_j_7lc32  TYPE STANDARD TABLE OF J_7LC32, "   
lv_matkl  TYPE MARA-MATKL, "   
lv_mtart  TYPE MARA-MTART. "   

  CALL FUNCTION 'J_7L_SXXX_FILTER'  "NOTRANSL: REA Datenfilter Infostruktur
    EXPORTING
         MATNR = lv_matnr
         PSTYV = lv_pstyv
         J_7LC08 = lv_j_7lc08
         I_PROTOKOLL = lv_i_protokoll
         FKART = lv_fkart
         VKORG = lv_vkorg
         VTWEG = lv_vtweg
         SPART = lv_spart
         KUNNR = lv_kunnr
         PRODH = lv_prodh
         MATKL = lv_matkl
         MTART = lv_mtart
    TABLES
         T_J_7LC03 = lt_t_j_7lc03
         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_7LC28 = lt_t_j_7lc28
         T_J_7LC32 = lt_t_j_7lc32
    EXCEPTIONS
        NOT_IN_RANGE = 1
        PARAMETER_MISSING = 2
. " J_7L_SXXX_FILTER




ABAP code using 7.40 inline data declarations to call FM J_7L_SXXX_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 MATNR FROM MARA INTO @DATA(ld_matnr).
 
 
 
"SELECT single PSTYV FROM VBRP INTO @DATA(ld_pstyv).
 
 
DATA(ld_i_protokoll) = ' '.
 
"SELECT single FKART FROM VBRK INTO @DATA(ld_fkart).
 
 
 
"SELECT single VKORG FROM VBRK INTO @DATA(ld_vkorg).
 
 
"SELECT single VTWEG FROM VBRK INTO @DATA(ld_vtweg).
 
 
"SELECT single SPART FROM VBRP INTO @DATA(ld_spart).
 
 
"SELECT single KUNNR FROM KNA1 INTO @DATA(ld_kunnr).
 
 
"SELECT single PRODH FROM VBRP INTO @DATA(ld_prodh).
 
 
"SELECT single MATKL FROM MARA INTO @DATA(ld_matkl).
 
"SELECT single MTART FROM MARA INTO @DATA(ld_mtart).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!