CKML_RUN_DISPLAY is a standard Executable ABAP Report 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 CKML_RUN_DISPLAY 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.
Selection Text: P_APPL = D Application
Selection Text: P_GJAHR = D Fiscal year
Selection Text: P_POPER = D Posting period
Selection Text: P_RUNDAY = D Last Day of Period
Selection Text: P_RUNTYP = D Costing run
Title: Obsolete from Release 4.6A
INCLUDE RCKMATOP_RUN_SELECTION.
INCLUDE RCKMATOP_RUN_SELECTION_PERIOD.
INCLUDE RCKMATOP_RUN_SELECTION_APPL.
INCLUDE CKML_RUN_SELSCREEN_PERIOD_EXT.
No SAP DATABASE tables are accessed within this REPORT code!
RS_SUBMIT_INFO CALL FUNCTION 'RS_SUBMIT_INFO' IMPORTING p_submit_info = f_submit_info.
CKML_RUN_PERIOD_GET CALL FUNCTION 'CKML_RUN_PERIOD_GET' EXPORTING I_RUN_ID = F_CKMLRUNPERIOD-RUN_ID I_RUN_TYPE = P_RUNTYP I_LAST_DAY = P_RUNDAY * I_LANGU = SY-LANGU I_POPER = P_POPER I_GJAHR = P_GJAHR IMPORTING ES_RUNPERIOD = F_CKMLRUNPERIOD * EXCEPTIONS * run_not_existent = 1 * OTHERS = 2 .
CKML_RUN_PLANTS_GET CALL FUNCTION 'CKML_RUN_PLANTS_GET' EXPORTING I_RUN_ID = IP_RUN_ID I_RUN_TYPE = IP_RUNTYP I_LAST_DAY = IP_RUNDAY I_POPER = IP_POPER I_GJAHR = IP_GJAHR IMPORTING ET_PLANTS = LT_PLANTS * exceptions * run_not_existent = 1 * OTHERS = 2 .
CKML_F_SET_BWKEY CALL FUNCTION 'CKML_F_SET_BWKEY' EXPORTING BWKEY = LF_ORG_DATA-BWKEY * exceptions * bwkey_not_found = 1 * internal_error = 2 * aschema_not_found = 3 * OTHERS = 4 .
CKML_F_GET_WWO CALL FUNCTION 'CKML_F_GET_WWO' IMPORTING WWO = LF_WWO.
RS_SET_SELSCREEN_STATUS * CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' * EXPORTING * P_STATUS = L_PFKEY * P_PROGRAM = 'RSSYSTDB' * TABLES * P_EXCLUDE = LT_EXFCODE.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.