SAP GMRBBOBJECTS Master Data For Revenue Increasing the Budget: RIB Objects Table data and field list

GMRBBOBJECTS is a standard SAP Table which is used to store Master Data For Revenue Increasing the Budget: RIB Objects data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GMRBBOBJECTS table consists of various fields, each holding specific information or linking keys about Master Data For Revenue Increasing the Budget: RIB Objects data available in SAP. These include RBBOBJNR (Object number for GM RIB and AVC), CRTUSER (User who created the object), CRTDATE (creation date), CRTTIME (Time of creation)... 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. .

GMRBBOBJECTS table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP GMRBBOBJECTS 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 GMRBBOBJECTS 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
CLIENTClient MANDTCLNT3T000MANDT
RBBOBJNRObject number for GM RIB and AVC GM_OBJNRCHAR22GMBASOBJNRSYSUUID_22
CRTUSERUser who created the object GM_CRT_USERCHAR12USERNAME
CRTDATEcreation date GM_CRT_DATEDATS8DATE
CRTTIMETime of creation GM_CRT_TIMETIMS6TIME
CHGUSERLast user to change object GM_CHG_USERCHAR12USERNAME
CHGDATEDate on which the object was changed GM_CHG_DATEDATS8DATE
CHGTIMETime at which the object was changed GM_CHG_TIMETIMS6TIME
ROACTSTATGM RIB Object: Activation Status GMRB_ROACTSTATCHAR1GMRB_ROACTSTAT
UPDFILTGM Filter Profile for Posting Data (RIB) GMRB_UPDFILTCHAR4GMRB_UPDFILT
CALCRULECalculation Formula for Revenues Increasing the Budget BURB_CALCRULECHAR4BURBCALCRULESBURB_CALCRULE
RESAMNTINDIndicator for Residual Amounts (RIB): Use Surplus Amount? GMRB_RESAMNTINDCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM GMRBBOBJECTS
INTO CORRESPONDING FIELDS OF WA_GMRBBOBJECTS
WHERE...

How to access SAP table GMRBBOBJECTS

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

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