CNVC_CCE_ACTIVATE_RUN 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_CCE_ACTIVATE_RUN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CNVC_CCE_ACT - Vergleichslauf aktivieren
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: Activate run
Text Symbol: C01 = Backup-Set
Text Symbol: C02 = Activation-sign
Text Symbol: C03 = User-name
Text Symbol: C04 = Date
Text Symbol: C05 = Time
Text Symbol: C06 = Description short-text
Text Symbol: T01 = Do you really want to set run
Text Symbol: T02 = as active?
Text Symbol: T03 = Following error occured:
Text Symbol: T04 = Backup run with run ID
Text Symbol: T05 = was set as active.
Text Symbol: T06 = Following error occured:
Text Symbol: T08 = Are you sure?
Text Symbol: T09 = Yes
Text Symbol: T10 = No
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = gv_report is_layout = gs_layout it_fieldcat = gt_fieldcat it_events = gt_event TABLES t_outtab = gt_head.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_report is_layout = gs_layout it_fieldcat = gt_fieldcat i_default = 'X' it_events = gt_event TABLES t_outtab = gt_head.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-t08 "'Are you sure?' text_question = iv_question text_button_1 = text-t09 "'Yes' text_button_2 = text-t10 "'No' IMPORTING answer = ev_answer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.