SAP SD_PUSH_ITEM Function Module for NOTRANSL: Positionen aus Speicher zur Verfügung stellen
SD_PUSH_ITEM is a standard sd push item 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: Positionen aus Speicher zur Verfügung stellen 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 sd push item FM, simply by entering the name SD_PUSH_ITEM into the relevant SAP transaction such as SE37 or SE38.
Function Group: V45I
Program Name: SAPLV45I
Main Program: SAPLV45I
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SD_PUSH_ITEM 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 'SD_PUSH_ITEM'"NOTRANSL: Positionen aus Speicher zur Verfügung stellen.
EXPORTING
* I_VBAP = "
* I_VBAK = "
* I_BUFFER_REFRESH = "
TABLES
* I_XVBAP = "Sales Document Items
* I_XVBUP = "
* I_XVBEP = "
* I_XVBKD = "
* I_XVBPA = "
* I_XVBUK = "
* I_XVBFA = "Reference Structure for XVBFA/YVBFA
* I_XVBUV = "
IMPORTING Parameters details for SD_PUSH_ITEM
I_VBAP -
Data type: VBAPOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VBAK -
Data type: VBAKOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BUFFER_REFRESH -
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SD_PUSH_ITEM
I_XVBAP - Sales Document Items
Data type: VBAPVBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XVBUP -
Data type: VBUPVBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XVBEP -
Data type: VBEPVBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XVBKD -
Data type: VBKDVBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XVBPA -
Data type: VBPAVBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XVBUK -
Data type: VBUKVBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XVBFA - Reference Structure for XVBFA/YVBFA
Data type: VBFAOptional: Yes
Call by Reference: Yes
I_XVBUV -
Data type: VBUVVBOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SD_PUSH_ITEM 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_vbap | TYPE VBAP, " | |||
| lt_i_xvbap | TYPE STANDARD TABLE OF VBAPVB, " | |||
| lv_i_vbak | TYPE VBAK, " | |||
| lt_i_xvbup | TYPE STANDARD TABLE OF VBUPVB, " | |||
| lt_i_xvbep | TYPE STANDARD TABLE OF VBEPVB, " | |||
| lv_i_buffer_refresh | TYPE C, " | |||
| lt_i_xvbkd | TYPE STANDARD TABLE OF VBKDVB, " | |||
| lt_i_xvbpa | TYPE STANDARD TABLE OF VBPAVB, " | |||
| lt_i_xvbuk | TYPE STANDARD TABLE OF VBUKVB, " | |||
| lt_i_xvbfa | TYPE STANDARD TABLE OF VBFA, " | |||
| lt_i_xvbuv | TYPE STANDARD TABLE OF VBUVVB. " |
|   CALL FUNCTION 'SD_PUSH_ITEM' "NOTRANSL: Positionen aus Speicher zur Verfügung stellen |
| EXPORTING | ||
| I_VBAP | = lv_i_vbap | |
| I_VBAK | = lv_i_vbak | |
| I_BUFFER_REFRESH | = lv_i_buffer_refresh | |
| TABLES | ||
| I_XVBAP | = lt_i_xvbap | |
| I_XVBUP | = lt_i_xvbup | |
| I_XVBEP | = lt_i_xvbep | |
| I_XVBKD | = lt_i_xvbkd | |
| I_XVBPA | = lt_i_xvbpa | |
| I_XVBUK | = lt_i_xvbuk | |
| I_XVBFA | = lt_i_xvbfa | |
| I_XVBUV | = lt_i_xvbuv | |
| . " SD_PUSH_ITEM | ||
ABAP code using 7.40 inline data declarations to call FM SD_PUSH_ITEM
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.Search for further information about these or an SAP related objects