SAP J_7L_FILL_VBELNB_DATA Function Module for NOTRANSL: Ermittelt die Konsoldierten Positionen für Belegfluss









J_7L_FILL_VBELNB_DATA is a standard j 7l fill vbelnb data 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: Ermittelt die Konsoldierten Positionen für Belegfluss 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 fill vbelnb data FM, simply by entering the name J_7L_FILL_VBELNB_DATA into the relevant SAP transaction such as SE37 or SE38.

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



Function J_7L_FILL_VBELNB_DATA 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_FILL_VBELNB_DATA'"NOTRANSL: Ermittelt die Konsoldierten Positionen für Belegfluss
EXPORTING
IN_ENTNA = "
IN_BUKRS = "
IN_LAND1 = "
IN_TLKNZ = "REA Indicator for Test Run
IN_MODUSFI = "Mode for FI Integration

TABLES
IN_VBELN = "
O_RETURN = "Return Parameters
O_J7LV1K = "
O_J7LV1B = "
O_J7LV1S = "
O_J7LV1A = "
O_J7LV1M = "
O_J7LV1F = "
O_J7LV1H = "
O_J7LV1P = "

EXCEPTIONS
CONSOLIDATE_ERROR = 1
.



IMPORTING Parameters details for J_7L_FILL_VBELNB_DATA

IN_ENTNA -

Data type: J_7LMS-ENTNA
Optional: No
Call by Reference: Yes

IN_BUKRS -

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

IN_LAND1 -

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

IN_TLKNZ - REA Indicator for Test Run

Data type: J_7LMS-TLKNZ
Optional: No
Call by Reference: Yes

IN_MODUSFI - Mode for FI Integration

Data type: J_7LE09-MODUSFI
Optional: No
Call by Reference: Yes

TABLES Parameters details for J_7L_FILL_VBELNB_DATA

IN_VBELN -

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

O_RETURN - Return Parameters

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

O_J7LV1K -

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

O_J7LV1B -

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

O_J7LV1S -

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

O_J7LV1A -

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

O_J7LV1M -

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

O_J7LV1F -

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

O_J7LV1H -

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

O_J7LV1P -

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

EXCEPTIONS details

CONSOLIDATE_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for J_7L_FILL_VBELNB_DATA 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_in_entna  TYPE J_7LMS-ENTNA, "   
lt_in_vbeln  TYPE STANDARD TABLE OF J7LR4_VBELN_RANGE, "   
lv_consolidate_error  TYPE J7LR4_VBELN_RANGE, "   
lt_o_return  TYPE STANDARD TABLE OF BALMI, "   
lv_in_bukrs  TYPE J_7LMS-BUKRS, "   
lt_o_j7lv1k  TYPE STANDARD TABLE OF J_7LV1K, "   
lv_in_land1  TYPE J_7LMS-LAND1, "   
lt_o_j7lv1b  TYPE STANDARD TABLE OF J_7LV1B, "   
lv_in_tlknz  TYPE J_7LMS-TLKNZ, "   
lt_o_j7lv1s  TYPE STANDARD TABLE OF J_7LV1S, "   
lt_o_j7lv1a  TYPE STANDARD TABLE OF J_7LV1A, "   
lv_in_modusfi  TYPE J_7LE09-MODUSFI, "   
lt_o_j7lv1m  TYPE STANDARD TABLE OF J_7LV1M, "   
lt_o_j7lv1f  TYPE STANDARD TABLE OF J_7LV1F, "   
lt_o_j7lv1h  TYPE STANDARD TABLE OF J_7LV1H, "   
lt_o_j7lv1p  TYPE STANDARD TABLE OF J_7LV1P. "   

  CALL FUNCTION 'J_7L_FILL_VBELNB_DATA'  "NOTRANSL: Ermittelt die Konsoldierten Positionen für Belegfluss
    EXPORTING
         IN_ENTNA = lv_in_entna
         IN_BUKRS = lv_in_bukrs
         IN_LAND1 = lv_in_land1
         IN_TLKNZ = lv_in_tlknz
         IN_MODUSFI = lv_in_modusfi
    TABLES
         IN_VBELN = lt_in_vbeln
         O_RETURN = lt_o_return
         O_J7LV1K = lt_o_j7lt1k
         O_J7LV1B = lt_o_j7lt1b
         O_J7LV1S = lt_o_j7lt1s
         O_J7LV1A = lt_o_j7lt1a
         O_J7LV1M = lt_o_j7lt1m
         O_J7LV1F = lt_o_j7lt1f
         O_J7LV1H = lt_o_j7lt1h
         O_J7LV1P = lt_o_j7lt1p
    EXCEPTIONS
        CONSOLIDATE_ERROR = 1
. " J_7L_FILL_VBELNB_DATA




ABAP code using 7.40 inline data declarations to call FM J_7L_FILL_VBELNB_DATA

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_7LMS INTO @DATA(ld_in_entna).
 
 
 
 
"SELECT single BUKRS FROM J_7LMS INTO @DATA(ld_in_bukrs).
 
 
"SELECT single LAND1 FROM J_7LMS INTO @DATA(ld_in_land1).
 
 
"SELECT single TLKNZ FROM J_7LMS INTO @DATA(ld_in_tlknz).
 
 
 
"SELECT single MODUSFI FROM J_7LE09 INTO @DATA(ld_in_modusfi).
 
 
 
 
 


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!