SAP Reports / Programs

CNVC_CCE_CREATE_RESULT_TAB SAP ABAP Report - Create Table for Customizing Comparison







CNVC_CCE_CREATE_RESULT_TAB is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for In order to display the results of a customizing analysis, you must create a table that contains the customizing comparison results...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter CNVC_CCE_CREATE_RESULT_TAB into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT CNVC_CCE_CREATE_RESULT_TAB. "Basic submit
SUBMIT CNVC_CCE_CREATE_RESULT_TAB AND RETURN. "Return to original report after report execution complete
SUBMIT CNVC_CCE_CREATE_RESULT_TAB VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Create Table for Customizing Comparison
Text Symbol: T03 = The Result table name is:
Text Symbol: T06 = Please add the systems first.
Text Symbol: T07 = Please build the table pool first.
Text Symbol: T08 = Please check RFC connections first.
Text Symbol: T09 = This Pack ID doesn't exist. Please create it first.
Text Symbol: T10 = Please add at least 2 active systems.
Text Symbol: T11 = Error in creating the result table.
Text Symbol: T12 = Error in creating the result table.
Text Symbol: T13 = The result table has been created.
Text Symbol: T14 = Error in activating the result table.
Text Symbol: T15 = The result table has been activated.
Text Symbol: T16 = Fehler
Text Symbol: T17 = Fertig
Text Symbol: T20 = Table name must start with '/1SAP1/ prefix !
Text Symbol: T22 = Specified table already exist. Select new table name.
Text Symbol: T23 = Object_exists_global in "insert table to TADIR"
Text Symbol: T24 = Object_exists_local in "insert table to TADIR"
Text Symbol: T25 = Unspecified error in "insert table to TADIR"
Text Symbol: T26 = Error
Text Symbol: T27 = Error


INCLUDES used within this REPORT CNVC_CCE_CREATE_RESULT_TAB

INCLUDE: CNVC_SCWB_PARAMS,


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CNV_MBT_AUTHORITY_CHECK CALL FUNCTION 'CNV_MBT_AUTHORITY_CHECK' EXPORTING im_area = 'SLOP' im_level = 'PACKAGE' im_activity = '03' EXCEPTIONS no_authority = 1 OTHERS = 2.

CNVCF_CCE_ACTIVE_GET * CALL FUNCTION 'CNVCF_CCE_ACTIVE_GET' * IMPORTING * active_run = p_runid.

CNVCF_SCWB_ZLOG * CALL FUNCTION 'CNVCF_SCWB_ZLOG' * EXPORTING * i_log_object = c_obj_zxiproxy * i_extnumber = gv_ext_number * TABLES * t_log_message = gt_log_message * EXCEPTIONS * log_header_inconsistent = 1 * logging_error = 2 * OTHERS = 3.

BAL_DSP_LOG_DISPLAY * CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' * EXCEPTIONS * OTHERS = 1.

POPUP_TO_INFORM * CALL FUNCTION 'POPUP_TO_INFORM' * EXPORTING * titel = ' ' * txt1 = text-t20 * txt2 = ' '.

POPUP_TO_INFORM * CALL FUNCTION 'POPUP_TO_INFORM' * EXPORTING * titel = ' ' * txt1 = text-t22 * txt2 = ' '.

DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = co_vorlage state = 'A' IMPORTING dd02v_wa = ls_dd02v dd09l_wa = ls_dd09l EXCEPTIONS illegal_input = 1 OTHERS = 2.

DDIF_TABL_PUT CALL FUNCTION 'DDIF_TABL_PUT' EXPORTING name = ip_tabname dd02v_wa = ls_dd02v dd09l_wa = ls_dd09l TABLES dd03p_tab = lt_dd03p EXCEPTIONS tabl_not_found = 1 name_inconsistent = 2 tabl_inconsistent = 3 put_failure = 4 put_refused = 5 OTHERS = 6.

DDIF_TABL_ACTIVATE CALL FUNCTION 'DDIF_TABL_ACTIVATE' EXPORTING name = ip_tabname EXCEPTIONS not_found = 1 put_failure = 2 OTHERS = 3.

PUT_TADIR_INSERT CALL FUNCTION 'PUT_TADIR_INSERT' EXPORTING author = sy-uname devclass = '$TMP' genflag = 'X' object = 'TABL' obj_name = gv_obj_name pgmid = 'R3TR' EXCEPTIONS object_exists_global = 1 object_exists_local = 2 OTHERS = 3.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name CNVC_CCE_CREATE_RESULT_TAB or its description.