SAP CKML_RUN_CREATE_ACCESS_LIST Function Module for
CKML_RUN_CREATE_ACCESS_LIST is a standard ckml run create access list 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 ckml run create access list FM, simply by entering the name CKML_RUN_CREATE_ACCESS_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: CKML_RUN_DISPLAY_FILTER
Program Name: SAPLCKML_RUN_DISPLAY_FILTER
Main Program:
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CKML_RUN_CREATE_ACCESS_LIST 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 'CKML_RUN_CREATE_ACCESS_LIST'".
EXPORTING
IT_CKMLMV011H = "
IT_SELECTED_NODES = "
I_TOP_NODE = "
IMPORTING
ET_CKMLMV011Z = "
E_COUNTER = "
IMPORTING Parameters details for CKML_RUN_CREATE_ACCESS_LIST
IT_CKMLMV011H -
Data type: CKHI_T_CKMLMV011HOptional: No
Call by Reference: No ( called with pass by value option)
IT_SELECTED_NODES -
Data type: LVC_T_NKEYOptional: No
Call by Reference: No ( called with pass by value option)
I_TOP_NODE -
Data type: LVC_NKEYOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CKML_RUN_CREATE_ACCESS_LIST
ET_CKMLMV011Z -
Data type: CKHI_T_CKMLMV011ZOptional: No
Call by Reference: No ( called with pass by value option)
E_COUNTER -
Data type: CKML_COUNTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for CKML_RUN_CREATE_ACCESS_LIST 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_et_ckmlmv011z | TYPE CKHI_T_CKMLMV011Z, " | |||
| lv_it_ckmlmv011h | TYPE CKHI_T_CKMLMV011H, " | |||
| lv_e_counter | TYPE CKML_COUNT, " | |||
| lv_it_selected_nodes | TYPE LVC_T_NKEY, " | |||
| lv_i_top_node | TYPE LVC_NKEY. " |
|   CALL FUNCTION 'CKML_RUN_CREATE_ACCESS_LIST' " |
| EXPORTING | ||
| IT_CKMLMV011H | = lv_it_ckmlmv011h | |
| IT_SELECTED_NODES | = lv_it_selected_nodes | |
| I_TOP_NODE | = lv_i_top_node | |
| IMPORTING | ||
| ET_CKMLMV011Z | = lv_et_ckmlmv011z | |
| E_COUNTER | = lv_e_counter | |
| . " CKML_RUN_CREATE_ACCESS_LIST | ||
ABAP code using 7.40 inline data declarations to call FM CKML_RUN_CREATE_ACCESS_LIST
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