SAP ISP_BUFFER_VAUSGB Function Module for IS-M/SD: Read Issue in Buffer









ISP_BUFFER_VAUSGB is a standard isp buffer vausgb SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Read Issue in Buffer 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 isp buffer vausgb FM, simply by entering the name ISP_BUFFER_VAUSGB into the relevant SAP transaction such as SE37 or SE38.

Function Group: JD06
Program Name: SAPLJD06
Main Program: SAPLJD06
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISP_BUFFER_VAUSGB 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 'ISP_BUFFER_VAUSGB'"IS-M/SD: Read Issue in Buffer
EXPORTING
* IN_DATUM = "
* IN_DRERZ = "
* IN_PVA = "
* IN_VAUSGBNR = "
* IN_WERK = "

IMPORTING
OUT_VAUSGB = "
OUT_VAWERK = "

EXCEPTIONS
NO_VAUSGB_FOUND = 1 WRONG_INPUT = 2
.



IMPORTING Parameters details for ISP_BUFFER_VAUSGB

IN_DATUM -

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

IN_DRERZ -

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

IN_PVA -

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

IN_VAUSGBNR -

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

IN_WERK -

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

EXPORTING Parameters details for ISP_BUFFER_VAUSGB

OUT_VAUSGB -

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

OUT_VAWERK -

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

EXCEPTIONS details

NO_VAUSGB_FOUND -

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

WRONG_INPUT -

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

Copy and paste ABAP code example for ISP_BUFFER_VAUSGB 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_datum  TYPE JDTVAUSGB-ERSCHDAT, "   
lv_out_vausgb  TYPE JDTVAUSGB, "   
lv_no_vausgb_found  TYPE JDTVAUSGB, "   
lv_in_drerz  TYPE JDTVAUSGB-DRERZ, "   
lv_out_vawerk  TYPE JDTVAWERK, "   
lv_wrong_input  TYPE JDTVAWERK, "   
lv_in_pva  TYPE JDTVAUSGB-PVA, "   
lv_in_vausgbnr  TYPE JDTVAUSGB-VAUSGB, "   
lv_in_werk  TYPE JDTVAWERK-DRKEI. "   

  CALL FUNCTION 'ISP_BUFFER_VAUSGB'  "IS-M/SD: Read Issue in Buffer
    EXPORTING
         IN_DATUM = lv_in_datum
         IN_DRERZ = lv_in_drerz
         IN_PVA = lv_in_pva
         IN_VAUSGBNR = lv_in_vausgbnr
         IN_WERK = lv_in_werk
    IMPORTING
         OUT_VAUSGB = lv_out_vausgb
         OUT_VAWERK = lv_out_vawerk
    EXCEPTIONS
        NO_VAUSGB_FOUND = 1
        WRONG_INPUT = 2
. " ISP_BUFFER_VAUSGB




ABAP code using 7.40 inline data declarations to call FM ISP_BUFFER_VAUSGB

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 ERSCHDAT FROM JDTVAUSGB INTO @DATA(ld_in_datum).
 
 
 
"SELECT single DRERZ FROM JDTVAUSGB INTO @DATA(ld_in_drerz).
 
 
 
"SELECT single PVA FROM JDTVAUSGB INTO @DATA(ld_in_pva).
 
"SELECT single VAUSGB FROM JDTVAUSGB INTO @DATA(ld_in_vausgbnr).
 
"SELECT single DRKEI FROM JDTVAWERK INTO @DATA(ld_in_werk).
 


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!