REUSTACT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Updating the Stock Statistics The report updates the stock statistics and copies them to the statistics record, because changes that were once entered as future changes have in the meantime become current changes...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 REUSTACT 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: OPERAND = Reference values
Selection Text: INSTLN = Installations
Selection Text: CONTRACT = Contracts
Selection Text: BP_REL = Partner relationships
Title: Update Stock Statistics
Text Symbol: S01 = Histories to be updated
INCLUDE IEWMODES.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_MASTER_DATA_STATS_REFRESH call function 'ISU_MASTER_DATA_STATS_REFRESH'.
ISU_BPREL_STATISTIC_UPDATE call function 'ISU_BPREL_STATISTIC_UPDATE' exporting x_wmode = co_change x_act = 'X' tables xt_bprel_old = b_e xt_bprel_new = b_e.
ISU_DB_EANL_SINGLE_ALL_TS call function 'ISU_DB_EANL_SINGLE_ALL_TS' exporting x_anlage = i-anlage tables t_v_eanl = v_a exceptions not_found = 1 system_error = 2 others = 3.
ISU_INSTLN_STATISTIC_PREPARE call function 'ISU_INSTLN_STATISTIC_PREPARE' exporting x_eanl = h_eanl importing y_regpolit = regpolit y_actor = actorid.
ISU_MASTER_DATA_STATS_REFRESH call function 'ISU_MASTER_DATA_STATS_REFRESH'.
ISU_INSTLN_STATISTIC_UPDATE call function 'ISU_INSTLN_STATISTIC_UPDATE' exporting x_eanl_new = h_eanl x_eanl_old = h_eanl x_regpolit = regpolit x_otype = actorid-otype x_actorid = actorid-objid x_upd_online = 'X' x_wmode = co_change x_act = 'X' tables xt_eanlh_new = ih xt_eanlh_old = ih.
ISU_DB_EVER_SINGLE call function 'ISU_DB_EVER_SINGLE' exporting x_vertrag = c-vertrag importing y_ever = h_ever exceptions others = 3.
ISU_MASTER_DATA_STATS_REFRESH call function 'ISU_MASTER_DATA_STATS_REFRESH'.
ISU_CONTRACT_STATISTIC_UPDATE call function 'ISU_CONTRACT_STATISTIC_UPDATE' exporting x_ever_new = h_ever x_ever_old = h_ever x_wmode = co_change x_act = 'X' tables xt_everh_new = ieverh.
ISU_MASTER_DATA_STATS_REFRESH call function 'ISU_MASTER_DATA_STATS_REFRESH'.
ISU_OPERAND_STATISTIC_UPDATE call function 'ISU_OPERAND_STATISTIC_UPDATE' exporting x_anlage = op-anlage x_upd_online = 'X' x_wmode = co_change x_act = 'X' tables xt_ettif_old = ops xt_ettif_new = ops.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.