SAP FKK_ORDER_CREATE_DOC_M_START Function Module for









FKK_ORDER_CREATE_DOC_M_START is a standard fkk order create doc m start 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 fkk order create doc m start FM, simply by entering the name FKK_ORDER_CREATE_DOC_M_START into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_ORDER_CREATE_DOC_M_START 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 'FKK_ORDER_CREATE_DOC_M_START'"
EXPORTING
I_BASICS = "Mass Activities: Global Values for All Mass Activities
I_ORDCLS = "Request Class

IMPORTING
E_ADDONS = "Parameter for Mass Action- Generating Standing Requests Docs
E_APPLK = "Application Area
ET_ORDNR = "Requests: Table Type Numbers with Info on Document Creation

CHANGING
C_LOW = "
C_HIGH = "

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for FKK_ORDER_CREATE_DOC_M_START

I_BASICS - Mass Activities: Global Values for All Mass Activities

Data type: FKK_MAD_BASICS
Optional: No
Call by Reference: Yes

I_ORDCLS - Request Class

Data type: ORDCLS_KK
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for FKK_ORDER_CREATE_DOC_M_START

E_ADDONS - Parameter for Mass Action- Generating Standing Requests Docs

Data type: FKK_MAD_DUDC
Optional: No
Call by Reference: Yes

E_APPLK - Application Area

Data type: APPLK_KK
Optional: No
Call by Reference: Yes

ET_ORDNR - Requests: Table Type Numbers with Info on Document Creation

Data type: FKKORDERNR_T
Optional: No
Call by Reference: Yes

CHANGING Parameters details for FKK_ORDER_CREATE_DOC_M_START

C_LOW -

Data type: C
Optional: No
Call by Reference: Yes

C_HIGH -

Data type: C
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ERROR - Error

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FKK_ORDER_CREATE_DOC_M_START 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_c_low  TYPE C, "   
lv_error  TYPE C, "   
lv_e_addons  TYPE FKK_MAD_DUDC, "   
lv_i_basics  TYPE FKK_MAD_BASICS, "   
lv_c_high  TYPE C, "   
lv_e_applk  TYPE APPLK_KK, "   
lv_i_ordcls  TYPE ORDCLS_KK, "   
lv_et_ordnr  TYPE FKKORDERNR_T. "   

  CALL FUNCTION 'FKK_ORDER_CREATE_DOC_M_START'  "
    EXPORTING
         I_BASICS = lv_i_basics
         I_ORDCLS = lv_i_ordcls
    IMPORTING
         E_ADDONS = lv_e_addons
         E_APPLK = lv_e_applk
         ET_ORDNR = lv_et_ordnr
    CHANGING
         C_LOW = lv_c_low
         C_HIGH = lv_c_high
    EXCEPTIONS
        ERROR = 1
. " FKK_ORDER_CREATE_DOC_M_START




ABAP code using 7.40 inline data declarations to call FM FKK_ORDER_CREATE_DOC_M_START

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



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!