VERIFICATION_TZ1 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 VERIFICATION_TZ1 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.
Title: Verification report
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSD_FIX_DIME_GET_FOR_CUBE CALL FUNCTION 'RSD_FIX_DIME_GET_FOR_CUBE' EXPORTING i_infocube = i_infocube IMPORTING e_pdime = l_pdime.
RSD_FIELDNM_GET_FOR_DIME CALL FUNCTION 'RSD_FIELDNM_GET_FOR_DIME' EXPORTING i_dimension = l_pdime IMPORTING e_fieldnm = l_pfieldnm.
RSDU_INFOCUBE_INDEXES_DROP CALL FUNCTION 'RSDU_INFOCUBE_INDEXES_DROP' EXPORTING i_infocube = i_infocube i_indexname = '010' i_double_facttab = rs_c_unknown IMPORTING e_dropped = l_int EXCEPTIONS dropping_error = 1 index_info_error = 2 illegal_input = 3 inherited_error = 4 OTHERS = 5.
RSDU_INFOCUBE_INDEXES_CREATE CALL FUNCTION 'RSDU_INFOCUBE_INDEXES_CREATE' EXPORTING i_infocube = i_infocube i_indexname = '010' i_keynm = l_pfieldnm i_double_facttab = rs_c_unknown i_force_ddic = rs_c_false IMPORTING e_created = l_int EXCEPTIONS index_error = 1 inherited_error = 2 OTHERS = 3.
RSDU_INFOCUBE_INDEXES_DROP CALL FUNCTION 'RSDU_INFOCUBE_INDEXES_DROP' EXPORTING i_infocube = i_infocube i_skip_package = rs_c_false i_double_facttab = rs_c_unknown IMPORTING e_dropped = l_int EXCEPTIONS dropping_error = 1 index_info_error = 2 illegal_input = 3 inherited_error = 4 OTHERS = 5.
RSDU_INFOCUBE_INDEXES_NORMAL CALL FUNCTION 'RSDU_INFOCUBE_INDEXES_NORMAL' EXPORTING i_infocube = i_infocube i_double_facttab = rs_c_unknown i_f_facttab = rs_c_true i_e_facttab = rs_c_false i_force_ddic = rs_c_true IMPORTING e_created = l_int EXCEPTIONS index_error = 1 inherited_error = 2 OTHERS = 3.
RSDU_INFOCUBE_INDEXES_REPAIR CALL FUNCTION 'RSDU_INFOCUBE_INDEXES_REPAIR' EXPORTING i_infocube = i_infocube i_with_aggregates = rs_c_false i_double_facttab = rs_c_true IMPORTING e_repaired = l_int EXCEPTIONS dropping_error = 1 index_error = 2 check_error = 3 inherited_error = 4 OTHERS = 5.
RSDU_INFOCUBE_PRIMIDX_DROP CALL FUNCTION 'RSDU_INFOCUBE_PRIMIDX_DROP' EXPORTING i_infocube = i_infocube i_double_facttab = rs_c_true IMPORTING e_dropped = l_int EXCEPTIONS inherited_error = 1 dropping_error = 2 OTHERS = 3.
RSDU_INFOCUBE_PRIMIDX_CREATE CALL FUNCTION 'RSDU_INFOCUBE_PRIMIDX_CREATE' EXPORTING i_infocube = i_infocube i_double_facttab = rs_c_unknown EXCEPTIONS inherited_error = 1 OTHERS = 2.
RSDU_ANALYZE_INFOCUBE CALL FUNCTION 'RSDU_ANALYZE_INFOCUBE' EXPORTING i_infocube = i_infocube i_percentage = 10 i_analyze_ffacttable = rs_c_true i_analyze_efacttable = rs_c_true i_analyze_dimensions = rs_c_false i_analyze_sidtables = rs_c_false i_analyze_chktables = rs_c_false i_analyze_inctables = rs_c_false i_analyze_aggregates = rs_c_false i_analyze_indexes = rs_c_false EXCEPTIONS analyze_failed = 1 infocube_error = 2 inherited_error = 3 OTHERS = 4.
RSD_CUBE_MULTI_GET_ONLY_DB CALL FUNCTION 'RSD_CUBE_MULTI_GET_ONLY_DB' EXPORTING i_read_all = rs_c_true i_objvers = rs_c_objvers-active i_cubetype = rsd_c_cubetype-basic_ic i_with_atr_nav = rs_c_false IMPORTING e_t_cube = l_t_cube_i.
RSD_CUBE_MULTI_GET_ONLY_DB CALL FUNCTION 'RSD_CUBE_MULTI_GET_ONLY_DB' EXPORTING i_read_all = rs_c_true i_objvers = rs_c_objvers-active i_cubetype = rsd_c_cubetype-aggregat i_with_atr_nav = rs_c_false IMPORTING e_t_cube = l_t_cube_a.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.