CNVC_SCNG_COMP01 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 CNVC_SCNG_COMP01 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: CO_DEBUG = Debug mode
Selection Text: P_FORCE = Ignore status flag
Selection Text: P_MAX = Maximum (0=all objects)
Selection Text: P_RUNID = D Package Number
Selection Text: P_TEST = Test run (no DB changes)
Selection Text: SO_NAM = D Object Name
Selection Text: SO_OBJ = D Object Type
Title: Execute comparison
Text Symbol: T01 = SIDs read for package
Text Symbol: T02 = Call index creation program now?
Text Symbol: T03 = Unknown SID
Text Symbol: T04 = Comparing
Text Symbol: T05 = Comparing &1 of &2
Text Symbol: T06 = DONE
Text Symbol: T07 = Finished
Text Symbol: T08 = has been
INCLUDE: CNVC_SCWB_PARAMS,
No SAP DATABASE tables are accessed within this REPORT code!
CNVCF_SCNG_RUNID_GETACTIVE * CALL FUNCTION 'CNVCF_SCNG_RUNID_GETACTIVE' * IMPORTING * runid = p_runid.
GET_JOB_RUNTIME_INFO * CALL FUNCTION 'GET_JOB_RUNTIME_INFO' * IMPORTING * jobcount = gv_my_jobcount * jobname = gv_my_jobname * EXCEPTIONS * no_runtime_info = 1 * OTHERS = 2.
CNVCF_PROGRESS CALL FUNCTION 'CNVCF_PROGRESS' EXPORTING text = text-t05 "'Comparing &1 of &2' var1 = gv_count var2 = gv_count_max position = gv_count maximum = gv_count_max.
CNVCF_QUESTION CALL FUNCTION 'CNVCF_QUESTION' EXPORTING ip_question = text-t02 "'Call index creation program now?' IMPORTING ep_answer = answer.
CNVCF_SCNG_COMPARE CALL FUNCTION 'CNVCF_SCNG_COMPARE' EXPORTING ip_runid = p_runid ip_objid = gs_objl-objid ip_objtyp = gs_objl-objtyp ip_objnam = gs_objl-objnam objm_from_db = 'X' CHANGING objl = gs_objl.
CNV_MBT_L_SUBSTATE_UPDATE CALL FUNCTION 'CNV_MBT_L_SUBSTATE_UPDATE' EXPORTING * SESSION_ID = * SUBACT_ID = * TASK_ID = * STATE_TEC = state_log = 'U' * ABORTED = proc_total = lv_proc_tot proc_compl = lv_proc_com * SEQNUM = * FORCE_UPDATE = ' ' EXCEPTIONS parameters_not_defined = 1 entry_not_found = 2 update_failed = 3 pcl_update_failed = 4 rfc_failure = 5 OTHERS = 6 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.