CNV_CDMC_CA_OBJS_NO_REF 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 CNV_CDMC_CA_OBJS_NO_REF 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_ACTID = Activity ID
Selection Text: P_ADHOC = Adhoc Project
Selection Text: P_BGDWP = No. of background work process
Selection Text: P_PROJ = Project
Selection Text: P_PROJID = Project ID of CDMC Project
Title: Determines the Customer Objects with no Reference
Text Symbol: 000 = Objects with no Reference
Text Symbol: 001 = Background work process information
INCLUDE CNV_CDMC_CA_OBJSNOREF_TOP.
INCLUDE CNV_CDMC_CC_STATUS_MACROS.
INCLUDE CNV_CDMC_CC_APPLICATION_LOG.
No SAP DATABASE tables are accessed within this REPORT code!
JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING jobname = gv_job_name IMPORTING jobcount = gv_job_count EXCEPTIONS cant_create_job = 1 invalid_job_data = 2 jobname_missing = 3 OTHERS = 4.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING jobcount = gv_job_count jobname = gv_job_name strtimmed = 'X' EXCEPTIONS cant_start_immediate = 1 invalid_startdate = 2 jobname_missing = 3 job_close_failed = 4 job_nosteps = 5 job_notex = 6 lock_failed = 7 OTHERS = 8.
CNV_CDMC_PROTOCOL_CREATE_LOG CALL FUNCTION 'CNV_CDMC_PROTOCOL_CREATE_LOG' EXPORTING iv_proj = ls_state-project_id iv_activity = ls_state-activity_id iv_sysid = sy-sysid iv_repid = lv_progname IMPORTING ev_log_handle = lv_loghandle EXCEPTIONS appl_log_error = 1 OTHERS = 2.
CNV_CDMC_PROTOCOL_WRITE_LOG CALL FUNCTION 'CNV_CDMC_PROTOCOL_WRITE_LOG' EXPORTING iv_msgty = ls_joblog_messages-msgtype iv_msgid = ls_joblog_messages-msgid iv_msgno = ls_joblog_messages-msgno iv_msgv1 = ls_joblog_messages-msgv1 iv_msgv2 = ls_joblog_messages-msgv2 iv_msgv3 = ls_joblog_messages-msgv3 iv_msgv4 = ls_joblog_messages-msgv4 iv_sysid = sy-sysid iv_log_handle = ls_state-log_handle EXCEPTIONS log_not_found = 1 OTHERS = 2.
CNV_CDMC_PROTOCOL_WRITE_LOG_DB CALL FUNCTION 'CNV_CDMC_PROTOCOL_WRITE_LOG_DB' EXPORTING iv_client = sy-mandt * IV_UPDATE_TASK = ' ' iv_save_all = 'X' iv_log_handle = ls_state-log_handle EXCEPTIONS log_not_found = 1 save_not_allowed = 2 numbering_error = 3 not_possible = 4 OTHERS = 5 .
STREE_STRUCTURE_READ_N_TOP_LEV CALL FUNCTION 'STREE_STRUCTURE_READ_N_TOP_LEV' EXPORTING structure_id = lv_stru filter_id = ' ' read_all_levels = space read_n_levels = '00' TABLES structure_table = lt_nodes.
STREE_STRUCTURE_READ_REFERENCE CALL FUNCTION 'STREE_STRUCTURE_READ_REFERENCE' EXPORTING structure_id = lv_stru TABLES list_of_nodes = lt_nodes list_of_references = lt_refer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
CNV_CDMC_CA_OBJS_NO_REF - Determines the Customer Objects with no Reference CNV_CDMC_CA_OBJS_NO_REF - Determines the Customer Objects with no Reference CNV_CDMC_CA_OBJS_NOREF_ROUTINE - Include CNV_CDMC_CA_OBJS_NOREF_ROUTINE CNV_CDMC_CA_OBJSNOREF_TOP - Include CNV_CDMC_CA_OBJSNOREF_TOP CNV_CDMC_CA_MASS_DEL - CDMC: Clearing Analysis - Mass Deletion Report CNV_CDMC_CA_MASS_DEL - CDMC: Clearing Analysis - Mass Deletion Report