SAP J_7L_SORTIMENTSMELDUNG Function Module for NOTRANSL: REA Objekttabellen füllen









J_7L_SORTIMENTSMELDUNG is a standard j 7l sortimentsmeldung 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 Objekttabellen füllen 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 sortimentsmeldung FM, simply by entering the name J_7L_SORTIMENTSMELDUNG into the relevant SAP transaction such as SE37 or SE38.

Function Group: J7LJ
Program Name: SAPLJ7LJ
Main Program: SAPLJ7LJ
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function J_7L_SORTIMENTSMELDUNG 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_SORTIMENTSMELDUNG'"NOTRANSL: REA Objekttabellen füllen
EXPORTING
I_ENTNR = "Recycling Partner
I_BUKRS = "
I_LAND1 = "
I_PDATAB = "
I_PDATBI = "
I_BLART = "
I_BLTYP = "
* I_NEU2002 = 'X' "

IMPORTING
FATAL_ERROR = "

TABLES
TAB_ERROR = "
* RSPARAMS_TAB = "
V1K_TAB = "
.



IMPORTING Parameters details for J_7L_SORTIMENTSMELDUNG

I_ENTNR - Recycling Partner

Data type: J_7LM05-ENTNR
Optional: No
Call by Reference: Yes

I_BUKRS -

Data type: J_7LM03-BUKRS
Optional: No
Call by Reference: Yes

I_LAND1 -

Data type: J_7LM03-LAND1
Optional: No
Call by Reference: Yes

I_PDATAB -

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

I_PDATBI -

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

I_BLART -

Data type: J_7LV1K-BLART
Optional: No
Call by Reference: Yes

I_BLTYP -

Data type: J_7LV1K-BLTYP
Optional: No
Call by Reference: Yes

I_NEU2002 -

Data type: BOOLE-BOOLE
Default: 'X'
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for J_7L_SORTIMENTSMELDUNG

FATAL_ERROR -

Data type: C
Optional: No
Call by Reference: Yes

TABLES Parameters details for J_7L_SORTIMENTSMELDUNG

TAB_ERROR -

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

RSPARAMS_TAB -

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

V1K_TAB -

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

Copy and paste ABAP code example for J_7L_SORTIMENTSMELDUNG 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_entnr  TYPE J_7LM05-ENTNR, "   
lt_tab_error  TYPE STANDARD TABLE OF BALMI, "   
lv_fatal_error  TYPE C, "   
lv_i_bukrs  TYPE J_7LM03-BUKRS, "   
lt_rsparams_tab  TYPE STANDARD TABLE OF RSPARAMS, "   
lv_i_land1  TYPE J_7LM03-LAND1, "   
lt_v1k_tab  TYPE STANDARD TABLE OF J_7LV1K, "   
lv_i_pdatab  TYPE J_7LV1K-DATAB, "   
lv_i_pdatbi  TYPE J_7LV1K-DATBI, "   
lv_i_blart  TYPE J_7LV1K-BLART, "   
lv_i_bltyp  TYPE J_7LV1K-BLTYP, "   
lv_i_neu2002  TYPE BOOLE-BOOLE. "   'X'

  CALL FUNCTION 'J_7L_SORTIMENTSMELDUNG'  "NOTRANSL: REA Objekttabellen füllen
    EXPORTING
         I_ENTNR = lv_i_entnr
         I_BUKRS = lv_i_bukrs
         I_LAND1 = lv_i_land1
         I_PDATAB = lv_i_pdatab
         I_PDATBI = lv_i_pdatbi
         I_BLART = lv_i_blart
         I_BLTYP = lv_i_bltyp
         I_NEU2002 = lv_i_neu2002
    IMPORTING
         FATAL_ERROR = lv_fatal_error
    TABLES
         TAB_ERROR = lt_tab_error
         RSPARAMS_TAB = lt_rsparams_tab
         V1K_TAB = lt_v1k_tab
. " J_7L_SORTIMENTSMELDUNG




ABAP code using 7.40 inline data declarations to call FM J_7L_SORTIMENTSMELDUNG

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 ENTNR FROM J_7LM05 INTO @DATA(ld_i_entnr).
 
 
 
"SELECT single BUKRS FROM J_7LM03 INTO @DATA(ld_i_bukrs).
 
 
"SELECT single LAND1 FROM J_7LM03 INTO @DATA(ld_i_land1).
 
 
"SELECT single DATAB FROM J_7LV1K INTO @DATA(ld_i_pdatab).
 
"SELECT single DATBI FROM J_7LV1K INTO @DATA(ld_i_pdatbi).
 
"SELECT single BLART FROM J_7LV1K INTO @DATA(ld_i_blart).
 
"SELECT single BLTYP FROM J_7LV1K INTO @DATA(ld_i_bltyp).
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_neu2002).
DATA(ld_i_neu2002) = 'X'.
 


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!