SUB_CKMLMV is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter SUB_CKMLMV into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Program SUB_CKMLMV
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TCURM_SINGLE_READ CALL FUNCTION 'TCURM_SINGLE_READ' IMPORTING wtcurm = ls_tcurm.
CKML_F_SET_PLANT CALL FUNCTION 'CKML_F_SET_PLANT' EXPORTING plant = id_werks EXCEPTIONS plant_not_found = 1 internal_error = 2 aschema_not_found = 3 OTHERS = 4.
CKML_F_GET_WWO CALL FUNCTION 'CKML_F_GET_WWO' IMPORTING wwo = ls_wwo.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = ld_data_element langu = sy-langu all_types = 'X' IMPORTING dfies_wa = ls_dfies.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = id_tablename fieldname = id_fieldname langu = sy-langu TABLES dfies_tab = lt_dfies.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = id_tablename langu = sy-langu all_types = 'X' IMPORTING dfies_wa = os_dfies.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.