RSINF005 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for INFORMIX System Monitoring Interface Tables syschunks (Chunk information) Column Type Description chknum smallint Chunk number dbsnum smallint Dbspace number nxchknum smallint Number of next chunk in this dbspace chksize int Number of pages in this chunk nfree int Number of free pages in the chunk offset int Page offset of the chunk in its device or path fname char(128) Pathname for the device of this chunk flag smallint Flags Hexidecimal Meaning 0x0010 chunk is a mirror chunk 0x0020 chunk is in offline mode 0x0040 chunk is in online mode 0x0080 chunk is in recovery mode 0x0100 chunk has just been mirrored 0x0200 chunk is part of blobspace 0x0400 chunk is being dropped 0x0800 chunk is part of an optical stageblob 0x1000 chunk is inconsistent 0x4000 chunk contains temporary log space 0x8000 chunk was added during roll forward moffset int Page offset of the mirror chunk mfname char(128) Pathname for the device of the mirror chunk, if any mflag smallint Mirror chunk flags ..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 RSINF005 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: INFORMIX Chunks (from syschunks)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
S_DB_GET_FLAGS_TEXT CALL FUNCTION 'S_DB_GET_FLAGS_TEXT' EXPORTING FLAG_VALUE = FLAG_VALUE_INT TABLE_NAME = 'syschunks' TABLES FLAGSTEXT = FLAGS_TEXT .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSINF005 - INFORMIX Chunks (from syschunks) RSINF005 - INFORMIX Chunks (from syschunks) RSINF004 - INFORMIX Logical Logs (from syslogs) RSINF004 - INFORMIX Logical Logs (from syslogs) RSINF003 - INFORMIX Session Waits Profiles (from sysseswts) RSINF003 - INFORMIX Session Waits Profiles (from sysseswts)