SAP CKMLWIP_READ_SETTLE Function Module for DE-EN-LANG-SWITCH-NO-TRANSLATION









CKMLWIP_READ_SETTLE is a standard ckmlwip read settle SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for DE-EN-LANG-SWITCH-NO-TRANSLATION 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 ckmlwip read settle FM, simply by entering the name CKMLWIP_READ_SETTLE into the relevant SAP transaction such as SE37 or SE38.

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



Function CKMLWIP_READ_SETTLE 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 'CKMLWIP_READ_SETTLE'"DE-EN-LANG-SWITCH-NO-TRANSLATION
EXPORTING
* I_BWKEY = ' ' "
* I_RUNID = '0' "
I_BDATJ = "Posting date YYYY
I_POPER = "Posting Period
* I_UNTPER = '000' "
I_VORGANG = "
IR_WIPBUFFER = "Import/Export with Buffering

CHANGING
CT_SETTLE_DOCS = "
.



IMPORTING Parameters details for CKMLWIP_READ_SETTLE

I_BWKEY -

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

I_RUNID -

Data type: CKML_RUN_ID
Default: '0'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BDATJ - Posting date YYYY

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

I_POPER - Posting Period

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

I_UNTPER -

Data type: CK_UNTPER
Default: '000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VORGANG -

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

IR_WIPBUFFER - Import/Export with Buffering

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

CHANGING Parameters details for CKMLWIP_READ_SETTLE

CT_SETTLE_DOCS -

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

Copy and paste ABAP code example for CKMLWIP_READ_SETTLE 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_bwkey  TYPE BWKEY, "   SPACE
lv_ct_settle_docs  TYPE WIP01_T_CLOSING_DOCS, "   
lv_i_runid  TYPE CKML_RUN_ID, "   '0'
lv_i_bdatj  TYPE BDATJ, "   
lv_i_poper  TYPE POPER, "   
lv_i_untper  TYPE CK_UNTPER, "   '000'
lv_i_vorgang  TYPE CKM0_VORGANG, "   
lv_ir_wipbuffer  TYPE CL_CKML_WIP_DBACCESS. "   

  CALL FUNCTION 'CKMLWIP_READ_SETTLE'  "DE-EN-LANG-SWITCH-NO-TRANSLATION
    EXPORTING
         I_BWKEY = lv_i_bwkey
         I_RUNID = lv_i_runid
         I_BDATJ = lv_i_bdatj
         I_POPER = lv_i_poper
         I_UNTPER = lv_i_untper
         I_VORGANG = lv_i_vorgang
         IR_WIPBUFFER = lv_ir_wipbuffer
    CHANGING
         CT_SETTLE_DOCS = lv_ct_settle_docs
. " CKMLWIP_READ_SETTLE




ABAP code using 7.40 inline data declarations to call FM CKMLWIP_READ_SETTLE

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.

DATA(ld_i_bwkey) = ' '.
 
 
DATA(ld_i_runid) = '0'.
 
 
 
DATA(ld_i_untper) = '000'.
 
 
 


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!