SAP KAP_PSR_OBJ Object: Element, Sample Table data and field list

KAP_PSR_OBJ is a standard SAP Table which is used to store Object: Element, Sample data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The KAP_PSR_OBJ table consists of various fields, each holding specific information or linking keys about Object: Element, Sample data available in SAP. These include OBJVERS (Object version), OBJTYPE (Object type for project status report), CREATOR (Created by), CREATION_DATE (Created on)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

KAP_PSR_OBJ table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced

Text table = KAP_PSR_OBJ_TXT

Text table = KAP_PSR_OBJ_TXT


SAP KAP_PSR_OBJ table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the KAP_PSR_OBJ table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
TECHNAMETechnical name RSTECHNMCHAR30CHAR30
OBJVERSObject version RSOBJVERSCHAR1RSOBJVERS
OBJTYPEObject type for project status report KAP_PSR_OBJTYPECHAR3KAP_PSR_OBJTYPE
CREATORCreated by KAP_PSR_CREATORCHAR12USERNAME
CREATION_DATECreated on KAP_PSR_CREATION_DATEDATS8DATS
CREATION_TIMECreated At KAP_PSR_CREATION_TIMETIMS6UZEIT
EDITORChanged By KAP_PSR_EDITORCHAR12USERNAME
EDIT_DATEChanged On KAP_PSR_EDIT_DATEDATS8DATS
EDIT_TIMELast Changed At KAP_PSR_EDIT_TIMETIMS6UZEIT
QUERY_COMPUIDUUID in compressed form SYSUUID_25CHAR25SYSUUID_25
QUERY_VIEWMedium-Length Description RSTXT40CHAR40TEXT40
QUERY_COLUMNPosition RRXSWAHLNUMC4RSZELNR
QUERY_LINEPosition RRXSWAHLNUMC4RSZELNR
NAVBLOCKNavigation block (yes/no) KAP_PSR_NAVBLOCKCHAR1FLAG
TEXTELEMENTSText Element (yes/no) KAP_PSR_TEXTELEMENTSCHAR1FLAG
HEIGHTHeight KAP_PSR_HEIGHTINT410
TOOLBARToolbar (yes/no) KAP_PSR_TOOLBARCHAR1FLAG

Key field Non-key field



How do I retrieve data from SAP table KAP_PSR_OBJ using ABAP code

The following ABAP code Example will allow you to do a basic selection on KAP_PSR_OBJ to SELECT all data from the table
DATA: WA_KAP_PSR_OBJ TYPE KAP_PSR_OBJ.

SELECT SINGLE *
FROM KAP_PSR_OBJ
INTO CORRESPONDING FIELDS OF WA_KAP_PSR_OBJ
WHERE...

How to access SAP table KAP_PSR_OBJ

Within an ECC or HANA version of SAP you can also view further information about KAP_PSR_OBJ and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).