RNUTNREL0 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 RNUTNREL0 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ONTNREL - IS-H: Start View Maintenance TNREL
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: AUSBEGDT = Evaluation Period Start
Selection Text: AUSENDDT = Evaluation Period End
Selection Text: R_FALNR = Cases to Be Evaluated
Selection Text: SE_EINRI = Institution
Selection Text: TESTM = Test Mode
Selection Text: TXTEINRI = Institution Short Text
Selection Text: VERBEGDT = Comparison Period Start
Selection Text: VERENDDT = Comparison Period End
Title: IS-H: Call View Maintenance TNREL
Text Symbol: 001 = No data found for your selection criteria
Text Symbol: 002 = Number of cases found:
Text Symbol: S01 = Institution
Text Symbol: S02 = Evaluation Period
Text Symbol: S03 = Comparison Period
Text Symbol: S04 = To
Text Symbol: S05 = Test Mode
Text Symbol: U01 = Case ;;
Text Symbol: U02 = Name ;;
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_SAP_BP_CHECK_ACTIVE CALL FUNCTION 'ISH_SAP_BP_CHECK_ACTIVE' EXCEPTIONS NOT_ACTIVE = 1 OTHERS = 2.
VIEW_ENQUEUE CALL FUNCTION 'VIEW_ENQUEUE' EXPORTING view_name = 'TNREL' action = 'E' enqueue_mode = 'E' EXCEPTIONS foreign_lock = 1 system_failure = 2 table_not_found = 5 client_reference = 7.
VIEW_ENQUEUE CALL FUNCTION 'VIEW_ENQUEUE' EXPORTING view_name = 'TNREL' action = 'D' enqueue_mode = 'E' EXCEPTIONS foreign_lock = 1 system_failure = 2 table_not_found = 5 client_reference = 7.
VIEW_GET_DDIC_INFO CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING viewname = 'TNREL' * VARIANT_FOR_SELECTION = ' ' TABLES sellist = dummy_sellist[] x_header = x_header[] x_namtab = x_namtab[] EXCEPTIONS no_tvdir_entry = 1 table_not_found = 2 OTHERS = 3.
VIEW_MAINTENANCE CALL FUNCTION 'VIEW_MAINTENANCE' EXPORTING * CORR_NUMBER = ' ' view_action = p_action view_name = 'TNREL' * RFC_DESTINATION_FOR_UPGRADE = ' ' * CLIENT_FOR_UPGRADE = ' ' * COMPLEX_SELCONDS_USED = ' ' * NO_WARNING_FOR_CLIENTINDEP = ' ' * OC_INST = TABLES dba_sellist = dba_sellist[] excl_cua_funct = excl_cua_funct[] x_header = x_header[] x_namtab = x_namtab[] EXCEPTIONS MISSING_CORR_NUMBER = 1 NO_DATABASE_FUNCTION = 2 NO_EDITOR_FUNCTION = 3 NO_VALUE_FOR_SUBSET_IDENT = 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.