SAP GRFNREPSTRATEGY Report: Walking Strategy Table data and field list

GRFNREPSTRATEGY is a standard SAP Table which is used to store Report: Walking Strategy data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GRFNREPSTRATEGY table consists of various fields, each holding specific information or linking keys about Report: Walking Strategy data available in SAP. These include REPORT_VERSION (Report version), ENTITY_POSITION (Report: Position), ENTITY_ID (Entity ID), PARENT (Report: Parent position)... 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. .

GRFNREPSTRATEGY table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP GRFNREPSTRATEGY 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 GRFNREPSTRATEGY 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
REPORT_NAMEReport name GRFN_REPNAMECHAR20GRFNREPHEADERGRFN_REPNAME
REPORT_VERSIONReport version GRFN_REP_VERSIONCHAR10GRFNREPVERSIONGRFN_REP_VERSION
ENTITY_POSITIONReport: Position GRFN_POSITIONNUMC3GRFN_POSITION
ENTITY_IDEntity ID GRFN_API_ENTITY_IDCHAR20GRFNENTITYGRFN_API_ENTITY_ID
PARENTReport: Parent position GRFN_PARENT_POSITIONNUMC3GRFN_POSITION
READ_ATTRReport: Flag for reading attribute GRFN_READ_ATTRIBUTE_FLAGCHAR1AS4FLAG
AGGREGATEReport: Flag for aggregate GRFN_AGGREGATE_FLAGCHAR1GRFN_AGGREGATE_FLAG
STORE_NODEReport: Store type GRFN_STORE_TYPECHAR1GRFN_STORE_TYPE
CYCLEPosition in cycle GRFN_CYCLE_POSITIONNUMC3GRFN_POSITION
HIERARCHYNode is part of hierarchy GRFN_HIERARCHY_FLAGCHAR1BOOLEAN
EXIT_CLASSClass Name GRFN_CLASS_NAMECHAR30SEOCLSNAME
REGULATION_SPLITSplit Regulations GRFN_REG_SPLITCHAR1GRFN_REG_SPLIT
IMPLICIT_HIERReporting: Process implicit hierarchy GRFN_REP_IMPLICIT_HIERCHAR1AS4FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRFNREPSTRATEGY
INTO CORRESPONDING FIELDS OF WA_GRFNREPSTRATEGY
WHERE...

How to access SAP table GRFNREPSTRATEGY

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

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