CNVC_CCE_OBJECT_CREATE_VARIANT 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_OBJECT_CREATE_VARIANT 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_FORCE = overwrite old variants
Selection Text: P_RUNID = Comparison run
Title: Create variants
Text Symbol: T01 = No variants to insert found!
Text Symbol: T02 = done
Text Symbol: T03 = Could not delete variant:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CNVCF_CCE_ACTIVE_GET CALL FUNCTION 'CNVCF_CCE_ACTIVE_GET' IMPORTING active_run = p_runid.
RS_VARIANT_EXISTS CALL FUNCTION 'RS_VARIANT_EXISTS' EXPORTING report = gv_report variant = lv_variant EXCEPTIONS not_authorized = 1 no_report = 2 report_not_existent = 3 report_not_supplied = 4 OTHERS = 5.
RS_VARIANT_DELETE CALL FUNCTION 'RS_VARIANT_DELETE' EXPORTING report = gv_report variant = lv_variant flag_confirmscreen = 'X' flag_delallclient = 'X' EXCEPTIONS not_authorized = 1 not_executed = 2 no_report = 3 report_not_existent = 4 report_not_supplied = 5 variant_locked = 6 variant_not_existent = 7 no_corr_insert = 8 variant_protected = 9 OTHERS = 10.
RS_CREATE_VARIANT CALL FUNCTION 'RS_CREATE_VARIANT' EXPORTING curr_report = gv_report curr_variant = lv_variant vari_desc = ls_desc TABLES vari_contents = lt_params vari_text = lt_text EXCEPTIONS illegal_report_or_variant = 1 illegal_variantname = 2 not_authorized = 3 not_executed = 4 report_not_existent = 5 report_not_supplied = 6 variant_exists = 7 variant_locked = 8 OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
CNVC_CCE_OBJECT_CREATE_VARIANT - Create variants CNVC_CCE_OBJECT_CREATE_VARIANT - Create variants CNVC_CCE_OBJECT_CREATE_START - generate start report CNVC_CCE_OBJECT_CREATE_START - generate start report CNVC_CCE_OBJECT_BUILD_POOL - Determine check tables CNVC_CCE_OBJECT_BUILD_POOL - Determine check tables