SAP GRFNREPCOLUMN Report: Columns Table data and field list

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

The GRFNREPCOLUMN table consists of various fields, each holding specific information or linking keys about Report: Columns data available in SAP. These include FIELD_ID (Report: Field ID), CATEGORY (Field Category), MCF_VISIBILITY (Visibility driven by MCF), BUS_PROCESS (Multicompliance Framework-related business transaction)... 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. .

GRFNREPCOLUMN 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 GRFNREPCOLUMN 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 GRFNREPCOLUMN 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
FIELD_IDReport: Field ID GRFN_FIELDIDCHAR30GRFN_FIELDIDGRFN_FIELDMAP
CATEGORYField Category GRFN_FIELD_CATEGORYCHAR1GRFN_FIELD_CATEGORY
MCF_VISIBILITYVisibility driven by MCF GRFN_MCF_VISIBILITYCHAR1GRFN_MCF_VISIBILITY
BUS_PROCESSMulticompliance Framework-related business transaction GRPC_BUS_PROCESSCHAR20GRPCBUSPROCESSGRPC_BUS_PROCESS
DEFAULT_POSITIONReport: Filter - Column GRFN_COLUMNNUMC3GRFN_POSITION
IS_DEFAULTReport: Flag for default column GRFN_DEFAULT_FLAGCHAR1AS4FLAG
IS_ICONReport: Is the field icon? GRFN_IS_ICON_FLAGCHAR1AS4FLAG
LINKReport: Assigned link to the field GRFN_ASSIGNED_LINKCHAR30GRFN_FIELDID
TOOLTIPReport: Tooltip assigned to the field GRFN_ASSIGNED_TOOLTIPCHAR30GRFN_FIELDID
IS_LONGTEXTReport: Is the field long text GRFN_IS_LONGTEXT_FLAGCHAR1AS4FLAG
WRAPPEDReport: Text Wrapping GRFN_WRAPPED_FLAGCHAR1BOOLEAN
REGULATION_SPLITSplit Regulations GRFN_REG_SPLITCHAR1GRFN_REG_SPLIT
FIXEDReport: Is column fixed in ALV? GRFN_COLUMN_FIXEDCHAR1AS4FLAG
HEADER_WRAPPEDReport: Can be the header text of column wrapped? GRFN_HEADER_WRAPPED_FLAGCHAR1AS4FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRFNREPCOLUMN
INTO CORRESPONDING FIELDS OF WA_GRFNREPCOLUMN
WHERE...

How to access SAP table GRFNREPCOLUMN

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

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