SAP Reports / Programs | Basis Components | Use Subcomponents | Performance Monitors (TCC)(BC-CCM-MON-TUN) SAP BC

RSORATCA SAP ABAP Report - Checks Whether Next Extent Size Is Less Than Growth In The Last Month







RSORATCA 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 RSORATCA into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RSORATCA. "Basic submit
SUBMIT RSORATCA AND RETURN. "Return to original report after report execution complete
SUBMIT RSORATCA VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: EXTENTS = More extents than
Selection Text: OBJEKT = Tables or indexes
Selection Text: OWNER = Owner of tables
Selection Text: TABSPACE = Tablespace
Selection Text: TYPE = Index or table type
Title: Checks Whether Next Extent Size Is Less Than Growth In The Last Month


INCLUDES used within this REPORT RSORATCA

INCLUDE RSORAT0T.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

DB_ORA_CRITICAL_TABLES_GROWTH CALL FUNCTION 'DB_ORA_CRITICAL_TABLES_GROWTH' EXPORTING WITH_SUM_GROWTH_ALL = 'O' TABLES TIMES_LAST_MONTH = DUMMY_TIMES_LAST_MONTH HIST_LAST_MONTH = DUMMY_HIST_LAST_MONTH LAST_MONTH_SUM = DUMMY_LAST_MONTH_SUM SUM_GROWTH = DUMMY_SUM_GROWTH SUM_GROWTH_ALL = SUM_GROWTH_ALL EXCEPTIONS WRONG_DATABASE = 1 NO_PERMISSION = 2 HISTORY_NOT_FOUND = 3 OTHERS = 4.

DB_ORA_TABLES_HISTORY CALL FUNCTION 'DB_ORA_TABLES_HISTORY' EXPORTING TABLE = SUM_GROWTH-NAME TABLESPACE = '*' SCALE = 'W' READ_FROM_CACHE = 'X' * REFRESH = DISPLAY = 'X' TABLES SUM3 = DUMMY_SUM3 DHIST3 = DUMMY_DHIST3 TIMES = DUMMY_TIMES EXCEPTIONS WRONG_DATABASE = 1 NO_PERMISSION = 2 HISTORY_NOT_FOUND = 3 WRONG_SCALE_PARAMETER = 4 OTHERS = 5.

DB_ORA_CRITICAL_TABLES_GROWTH CALL FUNCTION 'DB_ORA_CRITICAL_TABLES_GROWTH' EXPORTING WITH_SUM_GROWTH_ALL = CACHEALL TABLES TIMES_LAST_MONTH = TIMES_LAST_MONTH HIST_LAST_MONTH = HIST_LAST_MONTH LAST_MONTH_SUM = LAST_MONTH_SUM SUM_GROWTH = SUM_GROWTH SUM_GROWTH_ALL = SUM_GROWTH_ALL EXCEPTIONS WRONG_DATABASE = 1 NO_PERMISSION = 2 HISTORY_NOT_FOUND = 3 OTHERS = 4.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSORATCA or its description.