GRW_HISTORY SAP (Report Writer Changes history) Table details

Dictionary Type: Table
Description: Report Writer Changes history




ABAP Code to SELECT data from GRW_HISTORY
Related tables to GRW_HISTORY
Access table GRW_HISTORY




Table field list including key, data, relationships and ABAP select examples

GRW_HISTORY is a standard SAP Table which is used to store Report Writer Changes history data and is available within R/3 SAP systems depending on the version and release level.

The GRW_HISTORY table consists of various fields, each holding specific information or linking keys about Report Writer Changes history data available in SAP. These include RW_OBJECTTYPE (ReportWriter Object Type), RW_OBJECTNAME (ReportWriter Object in Change Document), COUNTER (RW Change History Counter), RW_TABLE (ReportWriter Table in Change Document).. 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. .

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


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

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
RW_OBJECTTYPEReportWriter Object Type RWOBJ_TYPECHAR3RWOBJ_TYPE
RW_OBJECTNAMEReportWriter Object in Change Document RWOBJ_HISTCHAR24CHAR24
COUNTERRW Change History Counter CNT_HISTCHAR4CHAR4
RW_TABLEReportWriter Table in Change Document TABLE_HISTCHAR30CHAR30
RW_DATECreation date of the change document CDDATUMDATS8DATUM
RW_TIMETime changed CDUZEITTIMS6UZEIT
UNAMEUser name of the person responsible in change document CDUSERNAMECHAR12CHAR12
DATAReport Writer Change History Data RWDATA_HISTCHAR255CHAR255
MOREIndicator : Table in RW Change History has more than 1 line MORE_FLAGCHAR1FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRW_HISTORY
INTO CORRESPONDING FIELDS OF WA_GRW_HISTORY
WHERE...

How to access SAP table GRW_HISTORY

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!