SAP CK_F_DATA_SET_SD_SIMUL Function Module for









CK_F_DATA_SET_SD_SIMUL is a standard ck f data set sd simul SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ck f data set sd simul FM, simply by entering the name CK_F_DATA_SET_SD_SIMUL into the relevant SAP transaction such as SE37 or SE38.

Function Group: CKKA
Program Name: SAPLCKKA
Main Program: SAPLCKKA
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CK_F_DATA_SET_SD_SIMUL 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 'CK_F_DATA_SET_SD_SIMUL'"
EXPORTING
* AUTYP_IMP = "
* KALVAR_IMP = "
* KALNR_IMP = "
* T459K_IMP = "
* BUKRS_IMP = "Company Code
* WERKS_IMP = "Plant
* KOKRS_IMP = "Controlling Area
* MATNR_IMP = "Material Number
* SDBOM_IMP = "
* AUART_IMP = "
* KALSM_IMP = "
* OBJNR_IMP = "
* ZSCHL_IMP = "
VBELN_IMP = "
POSNR_IMP = "
* KLVAR_IMP = "
.



IMPORTING Parameters details for CK_F_DATA_SET_SD_SIMUL

AUTYP_IMP -

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

KALVAR_IMP -

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

KALNR_IMP -

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

T459K_IMP -

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

BUKRS_IMP - Company Code

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

WERKS_IMP - Plant

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

KOKRS_IMP - Controlling Area

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

MATNR_IMP - Material Number

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

SDBOM_IMP -

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

AUART_IMP -

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

KALSM_IMP -

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

OBJNR_IMP -

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

ZSCHL_IMP -

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

VBELN_IMP -

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

POSNR_IMP -

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

KLVAR_IMP -

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

Copy and paste ABAP code example for CK_F_DATA_SET_SD_SIMUL 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_autyp_imp  TYPE RK70S-AUTYP, "   
lv_kalvar_imp  TYPE VBAP-KALVAR, "   
lv_kalnr_imp  TYPE VBAP-KALNR, "   
lv_t459k_imp  TYPE T459K, "   
lv_bukrs_imp  TYPE RK70S-BUKRS, "   
lv_werks_imp  TYPE RK70S-WERKS, "   
lv_kokrs_imp  TYPE RK70S-KOKRS, "   
lv_matnr_imp  TYPE RK70S-MATNR, "   
lv_sdbom_imp  TYPE CKI64A-SELKZ, "   
lv_auart_imp  TYPE RK70S-AUART, "   
lv_kalsm_imp  TYPE RK70S-KALSM, "   
lv_objnr_imp  TYPE RK70S-OBJNR, "   
lv_zschl_imp  TYPE RK70S-ZSCHL, "   
lv_vbeln_imp  TYPE KANZ-VBELN, "   
lv_posnr_imp  TYPE KANZ-POSNR, "   
lv_klvar_imp  TYPE VBAP-KLVAR. "   

  CALL FUNCTION 'CK_F_DATA_SET_SD_SIMUL'  "
    EXPORTING
         AUTYP_IMP = lv_autyp_imp
         KALVAR_IMP = lv_kalvar_imp
         KALNR_IMP = lv_kalnr_imp
         T459K_IMP = lv_t459k_imp
         BUKRS_IMP = lv_bukrs_imp
         WERKS_IMP = lv_werks_imp
         KOKRS_IMP = lv_kokrs_imp
         MATNR_IMP = lv_matnr_imp
         SDBOM_IMP = lv_sdbom_imp
         AUART_IMP = lv_auart_imp
         KALSM_IMP = lv_kalsm_imp
         OBJNR_IMP = lv_objnr_imp
         ZSCHL_IMP = lv_zschl_imp
         VBELN_IMP = lv_vbeln_imp
         POSNR_IMP = lv_posnr_imp
         KLVAR_IMP = lv_klvar_imp
. " CK_F_DATA_SET_SD_SIMUL




ABAP code using 7.40 inline data declarations to call FM CK_F_DATA_SET_SD_SIMUL

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 AUTYP FROM RK70S INTO @DATA(ld_autyp_imp).
 
"SELECT single KALVAR FROM VBAP INTO @DATA(ld_kalvar_imp).
 
"SELECT single KALNR FROM VBAP INTO @DATA(ld_kalnr_imp).
 
 
"SELECT single BUKRS FROM RK70S INTO @DATA(ld_bukrs_imp).
 
"SELECT single WERKS FROM RK70S INTO @DATA(ld_werks_imp).
 
"SELECT single KOKRS FROM RK70S INTO @DATA(ld_kokrs_imp).
 
"SELECT single MATNR FROM RK70S INTO @DATA(ld_matnr_imp).
 
"SELECT single SELKZ FROM CKI64A INTO @DATA(ld_sdbom_imp).
 
"SELECT single AUART FROM RK70S INTO @DATA(ld_auart_imp).
 
"SELECT single KALSM FROM RK70S INTO @DATA(ld_kalsm_imp).
 
"SELECT single OBJNR FROM RK70S INTO @DATA(ld_objnr_imp).
 
"SELECT single ZSCHL FROM RK70S INTO @DATA(ld_zschl_imp).
 
"SELECT single VBELN FROM KANZ INTO @DATA(ld_vbeln_imp).
 
"SELECT single POSNR FROM KANZ INTO @DATA(ld_posnr_imp).
 
"SELECT single KLVAR FROM VBAP INTO @DATA(ld_klvar_imp).
 


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!