SAP BF_READ_V_STOCK_E Function Module for NOTRANSL: Bewertete Kundenauftragsbestände von der Datenbank lesen









BF_READ_V_STOCK_E is a standard bf read v stock e 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: Bewertete Kundenauftragsbestände von der Datenbank lesen 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 bf read v stock e FM, simply by entering the name BF_READ_V_STOCK_E into the relevant SAP transaction such as SE37 or SE38.

Function Group: MDBF
Program Name: SAPLMDBF
Main Program: SAPLMDBF
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function BF_READ_V_STOCK_E 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 'BF_READ_V_STOCK_E'"NOTRANSL: Bewertete Kundenauftragsbestände von der Datenbank lesen
EXPORTING
* XRUEM = "Allow Posting to Previous Period (Backposting)

IMPORTING
E_PROBLEMS = "

TABLES
I_MSKA_KEY = "
* C_MSKA = "
* C_MDBF = "

EXCEPTIONS
NO_INPUT_ENTRIES = 1 NO_MATERIAL = 2 NO_PLANT = 3 NO_MIXED_LEVELS = 4
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLMDBF_001 Customer Exit for Stock Determination Rule
EXIT_SAPLMDBF_002 Customer Exit for Stock Determination Item Table

IMPORTING Parameters details for BF_READ_V_STOCK_E

XRUEM - Allow Posting to Previous Period (Backposting)

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

EXPORTING Parameters details for BF_READ_V_STOCK_E

E_PROBLEMS -

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

TABLES Parameters details for BF_READ_V_STOCK_E

I_MSKA_KEY -

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

C_MSKA -

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

C_MDBF -

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

EXCEPTIONS details

NO_INPUT_ENTRIES -

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

NO_MATERIAL -

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

NO_PLANT -

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

NO_MIXED_LEVELS -

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

Copy and paste ABAP code example for BF_READ_V_STOCK_E 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_xruem  TYPE BFCOM-XRUEM, "   
lv_e_problems  TYPE BFCOM, "   
lt_i_mska_key  TYPE STANDARD TABLE OF MSKA_KEY, "   
lv_no_input_entries  TYPE MSKA_KEY, "   
lt_c_mska  TYPE STANDARD TABLE OF MSKA, "   
lv_no_material  TYPE MSKA, "   
lt_c_mdbf  TYPE STANDARD TABLE OF MDBF, "   
lv_no_plant  TYPE MDBF, "   
lv_no_mixed_levels  TYPE MDBF. "   

  CALL FUNCTION 'BF_READ_V_STOCK_E'  "NOTRANSL: Bewertete Kundenauftragsbestände von der Datenbank lesen
    EXPORTING
         XRUEM = lv_xruem
    IMPORTING
         E_PROBLEMS = lv_e_problems
    TABLES
         I_MSKA_KEY = lt_i_mska_key
         C_MSKA = lt_c_mska
         C_MDBF = lt_c_mdbf
    EXCEPTIONS
        NO_INPUT_ENTRIES = 1
        NO_MATERIAL = 2
        NO_PLANT = 3
        NO_MIXED_LEVELS = 4
. " BF_READ_V_STOCK_E




ABAP code using 7.40 inline data declarations to call FM BF_READ_V_STOCK_E

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 XRUEM FROM BFCOM INTO @DATA(ld_xruem).
 
 
 
 
 
 
 
 
 


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!