CNVC_CCE_CHECK_STRUCTURE 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_CHECK_STRUCTURE 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_DELE = delete duplicate records
Selection Text: P_RUNID = Comparison run
Selection Text: P_TABLE = Table
Selection Text: R_1 = in row output
Selection Text: R_2 = Sorted output
Selection Text: R_INROW = In row output
Selection Text: R_SORTED = Sorted output
Selection Text: SO_RFC = RFC connections
Title: Display structure of a table
Text Symbol: T01 = Table not available in:
Text Symbol: T02 = Table without data :
Text Symbol: T03 = Error:
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.
CNVCF_CCE_RFC_READ_TABLE CALL FUNCTION 'CNVCF_CCE_RFC_READ_TABLE' DESTINATION ip_dest EXPORTING query_table = ip_table no_data = 'X' TABLES options = lt_options fields = lt_fields data = lt_data EXCEPTIONS table_not_available = 1 table_without_data = 2 option_not_valid = 3 field_not_valid = 4 not_authorized = 5 data_buffer_exceeded = 6 OTHERS = 7.
CNVCF_CCE_RFC_READ_TABLE CALL FUNCTION 'CNVCF_CCE_RFC_READ_TABLE' DESTINATION ip_dest EXPORTING query_table = ip_table no_data = 'X' TABLES options = lt_options fields = lt_fields data = lt_data EXCEPTIONS table_not_available = 1 table_without_data = 2 option_not_valid = 3 field_not_valid = 4 not_authorized = 5 data_buffer_exceeded = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.