SAP Reports / Programs | Basis Components | Database Interface, Database Platforms | Informix(BC-DB-INF) SAP BC

RSINF005 SAP ABAP Report - INFORMIX Chunks (from syschunks)







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


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 RSINF005. "Basic submit
SUBMIT RSINF005 AND RETURN. "Return to original report after report execution complete
SUBMIT RSINF005 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: INFORMIX Chunks (from syschunks)


INCLUDES used within this REPORT RSINF005

No INCLUDES are used within this REPORT code!


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:

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 .



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 RSINF005 or its description.