SAP SELECT_STOCK_REVERSE Function Module for Reversal of Captial Transfer
SELECT_STOCK_REVERSE is a standard select stock reverse SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reversal of Captial Transfer 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 select stock reverse FM, simply by entering the name SELECT_STOCK_REVERSE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FDSR
Program Name: SAPLFDSR
Main Program: SAPLFDSR
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SELECT_STOCK_REVERSE 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 'SELECT_STOCK_REVERSE'"Reversal of Captial Transfer.
EXPORTING
I_VDBEKI = "Transfer of selected document
IMPORTING
FLG_OK = "Reversal successfully carried out or not
E_ALL_VDARL_OLD = "Table Type for Table VDARL
E_ALL_VDARL_NEW = "Loan
FLG_SSTATI_CHANGED = "
SSTATI_NEW = "
E_WRK_VDBEKI_ERR = "Flow Data: Document Header for Actual Record
E_WRK_VDBEPI_ERR = "Posted line items for document header
EXCEPTIONS
ENQUEUE_ERROR = 1 LOAN_ERROR = 2 NOT_FOUND = 3 USER_ERROR = 4 ZITI_ERROR = 5
IMPORTING Parameters details for SELECT_STOCK_REVERSE
I_VDBEKI - Transfer of selected document
Data type: VDBEKIOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SELECT_STOCK_REVERSE
FLG_OK - Reversal successfully carried out or not
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_ALL_VDARL_OLD - Table Type for Table VDARL
Data type: TRTY_VDARLOptional: No
Call by Reference: Yes
E_ALL_VDARL_NEW - Loan
Data type: TRTY_VDARLOptional: No
Call by Reference: Yes
FLG_SSTATI_CHANGED -
Data type: XFELDOptional: No
Call by Reference: Yes
SSTATI_NEW -
Data type: VDARL-SSTATIOptional: No
Call by Reference: Yes
E_WRK_VDBEKI_ERR - Flow Data: Document Header for Actual Record
Data type: VDBEKIOptional: No
Call by Reference: Yes
E_WRK_VDBEPI_ERR - Posted line items for document header
Data type: VDBEPIOptional: No
Call by Reference: Yes
EXCEPTIONS details
ENQUEUE_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
LOAN_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
USER_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ZITI_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SELECT_STOCK_REVERSE 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_flg_ok | TYPE STRING, " | |||
| lv_i_vdbeki | TYPE VDBEKI, " | |||
| lv_enqueue_error | TYPE VDBEKI, " | |||
| lv_loan_error | TYPE VDBEKI, " | |||
| lv_e_all_vdarl_old | TYPE TRTY_VDARL, " | |||
| lv_not_found | TYPE TRTY_VDARL, " | |||
| lv_e_all_vdarl_new | TYPE TRTY_VDARL, " | |||
| lv_user_error | TYPE TRTY_VDARL, " | |||
| lv_flg_sstati_changed | TYPE XFELD, " | |||
| lv_sstati_new | TYPE VDARL-SSTATI, " | |||
| lv_ziti_error | TYPE VDARL, " | |||
| lv_e_wrk_vdbeki_err | TYPE VDBEKI, " | |||
| lv_e_wrk_vdbepi_err | TYPE VDBEPI. " |
|   CALL FUNCTION 'SELECT_STOCK_REVERSE' "Reversal of Captial Transfer |
| EXPORTING | ||
| I_VDBEKI | = lv_i_vdbeki | |
| IMPORTING | ||
| FLG_OK | = lv_flg_ok | |
| E_ALL_VDARL_OLD | = lv_e_all_vdarl_old | |
| E_ALL_VDARL_NEW | = lv_e_all_vdarl_new | |
| FLG_SSTATI_CHANGED | = lv_flg_sstati_changed | |
| SSTATI_NEW | = lv_sstati_new | |
| E_WRK_VDBEKI_ERR | = lv_e_wrk_vdbeki_err | |
| E_WRK_VDBEPI_ERR | = lv_e_wrk_vdbepi_err | |
| EXCEPTIONS | ||
| ENQUEUE_ERROR = 1 | ||
| LOAN_ERROR = 2 | ||
| NOT_FOUND = 3 | ||
| USER_ERROR = 4 | ||
| ZITI_ERROR = 5 | ||
| . " SELECT_STOCK_REVERSE | ||
ABAP code using 7.40 inline data declarations to call FM SELECT_STOCK_REVERSE
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 SSTATI FROM VDARL INTO @DATA(ld_sstati_new). | ||||
Search for further information about these or an SAP related objects