CNVC_SCNR_ANALYSIS 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 creates the output files for the number range analysis...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_SCNR_ANALYSIS 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_OBJ = Number Range Object
Selection Text: P_PATH = Save In:
Selection Text: P_LANGU = Language key
Title: Download Results for Number Range Analysis
Text Symbol: T36 = Excel file is being downloaded
Text Symbol: T35 = HTML files are being downloaded
Text Symbol: T34 = SAP Landscape Transformation - Number Range Analysis
Text Symbol: T33 = Error
Text Symbol: T32 = Overlap
Text Symbol: T31 = Warning (ext.)
Text Symbol: T30 = Warning
Text Symbol: T29 = Show number range analysis
Text Symbol: T28 = Arial Black
Text Symbol: T27 = Application
Text Symbol: T26 = Type
Text Symbol: T25 = Description
Text Symbol: T24 = Date:
Text Symbol: T23 = User:
Text Symbol: T22 = Arial
Text Symbol: T21 = Nr. Range 2
Text Symbol: T20 = Nr. Range 1
Text Symbol: T19 = Number range conflicts within systems:
Text Symbol: T18 = (see table below)
Text Symbol: T17 = One or more systems contain overlapping number ranges
Text Symbol: T16 = !! Error:
Text Symbol: T15 = Level
Text Symbol: T14 = From
Text Symbol: T13 = Nr. Range
Text Symbol: T12 = System
Text Symbol: T11 = Detail data:
Text Symbol: T10 = Real overlapping
Text Symbol: T09 = Possible overlaps in ext. ranges
Text Symbol: T08 = Warning (potential overlaps)
Text Symbol: T07 = No overlaps
Text Symbol: T06 = Stat.
Text Symbol: T05 = Systems:
Text Symbol: T04 = Number range object:
Text Symbol: T03 = SAP Logo picture is missing in the DB
INCLUDE CNVC_SCNR_ANALYSIS_TOP.
INCLUDE CNVC_SCWB_PARAMS.
INCLUDE CNV_MBT_SM_MACROS_WITH_LOGGER.
INCLUDE CNVC_SCWB_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_AUTHORITY_CHECK CALL FUNCTION 'CNV_MBT_AUTHORITY_CHECK' EXPORTING im_area = 'SLOP' im_level = 'PACKAGE' im_activity = '02' EXCEPTIONS no_authority = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = percent text = text-t35.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = '50' text = text-t36.
CNVCF_SCNR_FIND_APPL CALL FUNCTION 'CNVCF_SCNR_FIND_APPL' DESTINATION gs_sid_appl-rfcdest TABLES scnr_nriv_appl = lt_nrivappl.
DOWNLOAD_WEB_OBJECT CALL FUNCTION 'DOWNLOAD_WEB_OBJECT' EXPORTING key = ls_key destination = lv_filename IMPORTING rc = lv_rc CHANGING temp = lv_temp.
CNVC_SCWB_CHECK_EXCEL_SUPPORT CALL FUNCTION 'CNVC_SCWB_CHECK_EXCEL_SUPPORT' IMPORTING excel_exe_path = lv_excel_exe_path excel_version = lv_excel_version EXCEPTIONS no_batch = 1 internal_error = 2 excel_not_installed = 3 wrong_frontend_os = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.