SAP GRFNREPCOLUMNC Report: Columns - customer Table data and field list

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

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

GRFNREPCOLUMNC table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP GRFNREPCOLUMNC 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 GRFNREPCOLUMNC 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
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
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 GRFNREPCOLUMNC using ABAP code

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

SELECT SINGLE *
FROM GRFNREPCOLUMNC
INTO CORRESPONDING FIELDS OF WA_GRFNREPCOLUMNC
WHERE...

How to access SAP table GRFNREPCOLUMNC

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

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