SAP CK_F_SD_ORDER_CO_OBJECT_PREP Function Module for









CK_F_SD_ORDER_CO_OBJECT_PREP is a standard ck f sd order co object prep 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 sd order co object prep FM, simply by entering the name CK_F_SD_ORDER_CO_OBJECT_PREP into the relevant SAP transaction such as SE37 or SE38.

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



Function CK_F_SD_ORDER_CO_OBJECT_PREP 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_SD_ORDER_CO_OBJECT_PREP'"
EXPORTING
* SOBES_IMP = "Spec. procurement key (only for assembly)
ROHSTOFF_IMP = "Highest material is raw material
* MENGE_IMP = "Input quantity (only for raw material)
* MEINH_IMP = "Input quantity unit (only for raw material)
* F_ORGTAB_IMP = "Plant data (only for raw material)
* KZBWS_IMP = ' ' "
* F_KVMK_IMP = "

IMPORTING
TEMPLATE_EXP = "

TABLES
* LT_CKIBEW = "
.



IMPORTING Parameters details for CK_F_SD_ORDER_CO_OBJECT_PREP

SOBES_IMP - Spec. procurement key (only for assembly)

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

ROHSTOFF_IMP - Highest material is raw material

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

MENGE_IMP - Input quantity (only for raw material)

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

MEINH_IMP - Input quantity unit (only for raw material)

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

F_ORGTAB_IMP - Plant data (only for raw material)

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

KZBWS_IMP -

Data type: MSEG-KZBWS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

F_KVMK_IMP -

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

EXPORTING Parameters details for CK_F_SD_ORDER_CO_OBJECT_PREP

TEMPLATE_EXP -

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

TABLES Parameters details for CK_F_SD_ORDER_CO_OBJECT_PREP

LT_CKIBEW -

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

Copy and paste ABAP code example for CK_F_SD_ORDER_CO_OBJECT_PREP 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:
lt_lt_ckibew  TYPE STANDARD TABLE OF CKIBEW, "   
lv_sobes_imp  TYPE T460A-SOBES, "   
lv_template_exp  TYPE KEKO-TEMPLATE, "   
lv_rohstoff_imp  TYPE SY-BATCH, "   
lv_menge_imp  TYPE CKKVMK-SUMLO, "   
lv_meinh_imp  TYPE CKKVMK-MEINS, "   
lv_f_orgtab_imp  TYPE CKIWERK, "   
lv_kzbws_imp  TYPE MSEG-KZBWS, "   SPACE
lv_f_kvmk_imp  TYPE CKKVMK. "   

  CALL FUNCTION 'CK_F_SD_ORDER_CO_OBJECT_PREP'  "
    EXPORTING
         SOBES_IMP = lv_sobes_imp
         ROHSTOFF_IMP = lv_rohstoff_imp
         MENGE_IMP = lv_menge_imp
         MEINH_IMP = lv_meinh_imp
         F_ORGTAB_IMP = lv_f_orgtab_imp
         KZBWS_IMP = lv_kzbws_imp
         F_KVMK_IMP = lv_f_kvmk_imp
    IMPORTING
         TEMPLATE_EXP = lv_template_exp
    TABLES
         LT_CKIBEW = lt_lt_ckibew
. " CK_F_SD_ORDER_CO_OBJECT_PREP




ABAP code using 7.40 inline data declarations to call FM CK_F_SD_ORDER_CO_OBJECT_PREP

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 SOBES FROM T460A INTO @DATA(ld_sobes_imp).
 
"SELECT single TEMPLATE FROM KEKO INTO @DATA(ld_template_exp).
 
"SELECT single BATCH FROM SY INTO @DATA(ld_rohstoff_imp).
 
"SELECT single SUMLO FROM CKKVMK INTO @DATA(ld_menge_imp).
 
"SELECT single MEINS FROM CKKVMK INTO @DATA(ld_meinh_imp).
 
 
"SELECT single KZBWS FROM MSEG INTO @DATA(ld_kzbws_imp).
DATA(ld_kzbws_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!