SAP GRAC_S_UI_REVDATA Item data in ALV grid for UAR Table data and field list

GRAC_S_UI_REVDATA is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Item data in ALV grid for UAR" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_GRAC_S_UI_REVDATA TYPE GRAC_S_UI_REVDATA.

The GRAC_S_UI_REVDATA table consists of various fields, each holding specific information or linking keys about Item data in ALV grid for UAR data available in SAP. These include ITEM_TYPE (Line Item Type), APPLICATION (Application or Connector), TRANSACTION_USAGE (Data Element of Type String), APP_ACTION (UAR line item owner action)... 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. .

GRAC_S_UI_REVDATA structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can Be Enhanced (Deep)


SAP GRAC_S_UI_REVDATA structure 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 GRAC_S_UI_REVDATA 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
ITEM_NAMELine Item ID GRAC_LINE_ITEM_IDCHAR100GRAC_LINE_ITEM_ID
ITEM_TYPELine Item Type GRAC_LINE_ITEM_TYPECHAR3GRAC_LINE_ITEM_TYPE
APPLICATIONApplication or Connector GRAC_REQSYSTEMCHAR32Assigned to domainRFCDEST
TRANSACTION_USAGEData Element of Type String GRAC_STRINGSTRG0GRAC_STRING
APP_ACTIONUAR line item owner action GRAC_REV_ITEM_OWNER_ACTIONCHAR2GRAC_REV_ITEM_OWNER_ACTION
USER_NAMEUser ID GRAC_USERCHAR50GRAC_USER
COMMENTS 0
REASONReason for Rejection GRAC_REASONNUMC3GRAC_REASON
IS_EXPANDEDReplacement for Real Boolean Type: 'X' == True '' == False WDY_BOOLEANCHAR1WDY_BOOLEAN
IS_LEAFReplacement for Real Boolean Type: 'X' == True '' == False WDY_BOOLEANCHAR1WDY_BOOLEAN
PARENT_KEY 0
ROW_KEY 0
REVIEW_STATUS 0
READONLYReplacement for Real Boolean Type: 'X' == True '' == False WDY_BOOLEANCHAR1WDY_BOOLEAN
IS_USERReplacement for Real Boolean Type: 'X' == True '' == False WDY_BOOLEANCHAR1WDY_BOOLEAN
ITEMNUMAction Sequence GRAC_SEQNUMC4GRAC_SEQUENCE
ITEM_IDLine Item ID GRAC_LINE_ITEM_IDCHAR100GRAC_LINE_ITEM_ID
ITEM_TYPE_DESCShort Description GRAC_SHORT_DESCCHAR132GRAC_DESCN
LAST_REAFFIRM_DTReaffirm Date GRAC_REAFF_DATEDATS8GRFN_DATUM
DUEDATERequest Approval Due Date GRAC_DUEDATEDATS8GRAC_DATE
ITEM_DESCShort Description GRAC_SHORT_DESCCHAR132GRAC_DESCN

Key field Non-key field



How do I retrieve data from SAP structure GRAC_S_UI_REVDATA using ABAP code?

As GRAC_S_UI_REVDATA is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on GRAC_S_UI_REVDATA as there is no data to select.

How to access SAP table GRAC_S_UI_REVDATA

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

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