SAP VDSCRKO_CREATE Function Module for DARWIN: Fill the SAP Script Transfer Structure
VDSCRKO_CREATE is a standard vdscrko create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for DARWIN: Fill the SAP Script Transfer Structure 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 vdscrko create FM, simply by entering the name VDSCRKO_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVP1
Program Name: SAPLFVP1
Main Program: SAPLFVP1
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function VDSCRKO_CREATE 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 'VDSCRKO_CREATE'"DARWIN: Fill the SAP Script Transfer Structure.
EXPORTING
I_BUKRS = "
* I_CALC_RLOAM = '0' "
* I_DATE = SY-DATUM "
* I_SKOKOART = ' ' "Konditionskopfart, wenn initial, dann alle
I_VDARL = "Not Yet Used
TABLES
E_VDSCRKO = "Konditionskopf/-positionsdaten
I_VZZKOKO = "Condition Headers
I_VZZKOPO = "Konditonspositionen
EXCEPTIONS
CURR_ERROR = 1
IMPORTING Parameters details for VDSCRKO_CREATE
I_BUKRS -
Data type: VDARL-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_CALC_RLOAM -
Data type:Default: '0'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DATE -
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SKOKOART - Konditionskopfart, wenn initial, dann alle
Data type: VZZKOKO-SKOKOARTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_VDARL - Not Yet Used
Data type: VDARLOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for VDSCRKO_CREATE
E_VDSCRKO - Konditionskopf/-positionsdaten
Data type: VDSCRKOOptional: No
Call by Reference: No ( called with pass by value option)
I_VZZKOKO - Condition Headers
Data type: VZZKOKOOptional: No
Call by Reference: No ( called with pass by value option)
I_VZZKOPO - Konditonspositionen
Data type: VZZKOPOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CURR_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for VDSCRKO_CREATE 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_bukrs | TYPE VDARL-BUKRS, " | |||
| lt_e_vdscrko | TYPE STANDARD TABLE OF VDSCRKO, " | |||
| lv_curr_error | TYPE VDSCRKO, " | |||
| lt_i_vzzkoko | TYPE STANDARD TABLE OF VZZKOKO, " | |||
| lv_i_calc_rloam | TYPE VZZKOKO, " '0' | |||
| lv_i_date | TYPE SY-DATUM, " SY-DATUM | |||
| lt_i_vzzkopo | TYPE STANDARD TABLE OF VZZKOPO, " | |||
| lv_i_skokoart | TYPE VZZKOKO-SKOKOART, " SPACE | |||
| lv_i_vdarl | TYPE VDARL. " |
|   CALL FUNCTION 'VDSCRKO_CREATE' "DARWIN: Fill the SAP Script Transfer Structure |
| EXPORTING | ||
| I_BUKRS | = lv_i_bukrs | |
| I_CALC_RLOAM | = lv_i_calc_rloam | |
| I_DATE | = lv_i_date | |
| I_SKOKOART | = lv_i_skokoart | |
| I_VDARL | = lv_i_vdarl | |
| TABLES | ||
| E_VDSCRKO | = lt_e_vdscrko | |
| I_VZZKOKO | = lt_i_vzzkoko | |
| I_VZZKOPO | = lt_i_vzzkopo | |
| EXCEPTIONS | ||
| CURR_ERROR = 1 | ||
| . " VDSCRKO_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM VDSCRKO_CREATE
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 BUKRS FROM VDARL INTO @DATA(ld_i_bukrs). | ||||
| DATA(ld_i_calc_rloam) | = '0'. | |||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_date). | ||||
| DATA(ld_i_date) | = SY-DATUM. | |||
| "SELECT single SKOKOART FROM VZZKOKO INTO @DATA(ld_i_skokoart). | ||||
| DATA(ld_i_skokoart) | = ' '. | |||
Search for further information about these or an SAP related objects