CNVC_SCWB_REFRESH_OBJECT_EXEC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for In this activity, the system executes the following activities: Load Attributes for Objects Determine Relevant Objects Compare Dependent Objects Compare Independent Objects Compile Comparison Results This activity allows you to get an overview of the latest status during harmonization of the participating systems...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_SCWB_REFRESH_OBJECT_EXEC 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: SO_TYP = D Object Type
Selection Text: SO_TRQS = Transport Requests
Selection Text: SO_NAM = D Object Name
Selection Text: P_TEST = Test Mode
Selection Text: P_RUNID = D Comparison Run
Title: Refresh Comparison (Optional)
Text Symbol: W01 = Warning
Text Symbol: T18 = No
Text Symbol: T17 = completed
Text Symbol: T16 = postprocessing
Text Symbol: T15 = loading objects
Text Symbol: T14 = started
Text Symbol: T13 = Refresh comparison completed.
Text Symbol: T12 = objects refreshed.
Text Symbol: T11 = Refreshing ...
Text Symbol: T10 = Postprocessing started.
Text Symbol: T09 = Load of object completed.
Text Symbol: T08 = Load of object from transports started.
Text Symbol: T07 = Refresh of comparison started.
Text Symbol: T05 = depdendent objects found
Text Symbol: T04 = Found dependent obj type:
Text Symbol: T03 = refreshing object
Text Symbol: T02 = No entries found. Possibly chosen object type is not active
Text Symbol: T01 = This program could run long, are you sure want to run it in dialog?
Text Symbol: I03 = Execute report in background.
Text Symbol: I02 = Redirecting to selection screen.
Text Symbol: I01 = Canceled
INCLUDE: CNVC_SCWB_PARAMS,
No SAP DATABASE tables are accessed within this REPORT code!
CNVCF_SCNG_RUNID_GETACTIVE * CALL FUNCTION 'CNVCF_SCNG_RUNID_GETACTIVE' * IMPORTING * runid = p_runid.
GET_JOB_RUNTIME_INFO * CALL FUNCTION 'GET_JOB_RUNTIME_INFO' * IMPORTING * jobcount = gv_my_jobcount * jobname = gv_my_jobname * EXCEPTIONS * no_runtime_info = 1 * OTHERS = 2.
CNVCF_SCWB_FIND_TRQ CALL FUNCTION 'CNVCF_SCWB_FIND_TRQ' EXPORTING trq = so_trqs[] rfc = '' IMPORTING lt_trq = gt_trqs.
CNVCF_SCWB_GAIN_OBJL CALL FUNCTION 'CNVCF_SCWB_GAIN_OBJL' EXPORTING tr_name = gs_trqs-trq_name IMPORTING objl = gt_objl.
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.
CNVCF_PROGRESS * CALL FUNCTION 'CNVCF_PROGRESS' * EXPORTING * text = '&1 &2 &3' * var1 = up_runid * var2 = up_objtyp * var3 = up_objnam.
CNVCF_SCNG_GETDEP CALL FUNCTION 'CNVCF_SCNG_GETDEP' EXPORTING objtyp = up_objtyp IMPORTING depobjttype = lv_deptyp.
CNVCF_SCNG_COMPARE CALL FUNCTION 'CNVCF_SCNG_COMPARE' EXPORTING ip_runid = up_runid ip_objid = ls_objl-objid ip_objtyp = up_objtyp ip_objnam = up_objnam CHANGING objl = ls_objl EXCEPTIONS no_relevant_attributes = 1 OTHERS = 2.
RFC_WALK_THRU_TEST CALL FUNCTION 'RFC_WALK_THRU_TEST' EXPORTING test_in = lv_test_in TABLES destinations = lt_hosts log = lt_log.
CNVCF_SCOL_GETDETAIL CALL FUNCTION 'CNVCF_SCOL_GETDETAIL' DESTINATION ls_sid-rfcdest EXPORTING ip_name = us_objl-objnam ip_objtype = us_objl-objtyp IMPORTING ep_exists = lv_exists TABLES objm = lt_objm EXCEPTIONS unknown_objecttype = 1 OTHERS = 2.
CNVCF_PROGRESS CALL FUNCTION 'CNVCF_PROGRESS' EXPORTING text = iv_action position = iv_pos maximum = iv_max.
CNV_MBT_L_SUBSTATE_UPDATE CALL FUNCTION 'CNV_MBT_L_SUBSTATE_UPDATE' EXPORTING * SESSION_ID = * SUBACT_ID = * TASK_ID = * STATE_TEC = state_log = 'U' * ABORTED = proc_total = lv_proc_tot proc_compl = lv_proc_com * SEQNUM = * FORCE_UPDATE = ' ' EXCEPTIONS parameters_not_defined = 1 entry_not_found = 2 update_failed = 3 pcl_update_failed = 4 rfc_failure = 5 OTHERS = 6 .
RFC_CONNECTION_CLOSE CALL FUNCTION 'RFC_CONNECTION_CLOSE' EXPORTING destination = ls_sid-rfcdest EXCEPTIONS OTHERS = 0.
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_SCWB_REFRESH_OBJECT_EXEC - Refresh Comparison (Optional) CNVC_SCWB_REFRESH_OBJECT_EXEC - Refresh Comparison (Optional) CNVC_SCWB_REFRESH_OBJECT - Refresh Comparison (Optional) CNVC_SCWB_REFRESH_OBJECT - Refresh Comparison (Optional) CNVC_SCWB_POSTPROCESSING - Compile Comparison Results CNVC_SCWB_POSTPROCESSING - Compile Comparison Results