SAP GRFNPLANUSAGE Configuration table for planner usage Table data and field list

GRFNPLANUSAGE is a standard SAP Table which is used to store Configuration table for planner usage data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GRFNPLANUSAGE table consists of various fields, each holding specific information or linking keys about Configuration table for planner usage data available in SAP. These include USAGE_ID (Plan usage), IMPL_CLASS (ABAP class name for selection procedure implementation), COMPONENT (Application Component), IMPL_WD1 (WD component for job result implementation)... 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. .

GRFNPLANUSAGE 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)

Text table = GRFNPLANUSAGE_T


SAP GRFNPLANUSAGE 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 GRFNPLANUSAGE 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
USAGE_IDPlan usage GRFN_PLAN_USAGECHAR10GRFN_PLAN_USAGE
IMPL_CLASSABAP class name for selection procedure implementation GRFN_ABAP_CLASS_NAMECHAR30GRFN_ABAP_CLASS_NAME
COMPONENTApplication Component GRFN_APP_COMPONENTCHAR2GRFN_APP_COMPONENT
IMPL_WD1WD component for job result implementation GRFN_JOB_RESULT_WD_NAMECHAR30
IMPL_WD2WD component for selecting variant GRFN_SEL_VAR_WD_NAMECHAR30
FEEDER_CLASSFeeder class for FPM component GRFN_FPM_FEEDER_CLASS_NAMECHAR30CLASSNAME
ADHOC_CREATIONIs Ad hoc creation GRFN_ADHOC_CREATIONCHAR1BOOLE
ENTITYEntity ID GRFN_API_ENTITY_IDCHAR20GRFNENTITYGRFN_API_ENTITY_ID
SURVEY_CATEGORYQuestion Category GRPC_QCATEGORYCHAR2GRPCQCATEGORYGRPC_D_QCATEGORY
SURVEY_VALUATIONValuation ID GRFN_VALUATION_IDCHAR10GRFNVALUATIONCHAR10
SURVEY_TYPESurvey Type GRFN_SURVEY_TYPECHAR2GRFNTSVYTYPEGRFN_SURVEY_TYPE
IS_TF_RELIs timeframe relevant GRFN_TIMEFRAME_RELEVANTCHAR1BOOLE
HIDE_OU_SIGNOFFFor certification GRFN_HIDE_SIGNOFFCHAR1BOOLE
SELECT_OUNeed to select organizations GRFN_SELECT_OUCHAR1BOOLE
SHARE_EVARLTIs the share evaluation result available? GRFN_SHARE_EVARLTCHAR1BOOLE
NEED_SURVEYIs survey needed? GRFN_NEED_SURVEYCHAR1BOOLE
IS_TESTINGIs the plan usage for testing? GRFN_IS_TESTINGCHAR1BOOLE
NEED_OBJECTIs the selection procedure step needed? GRFN_NEED_OBJECTCHAR1BOOLE
NEED_RCPTIs the recipient step needed? GRFN_NEED_RCPTCHAR1BOOLE
NEED_REGULATIONIs the regulation step needed? GRFN_NEED_REGULATIONCHAR1BOOLE
NEED_RECURRINGDoes the plan usage need to be recurring? GRFN_NEED_RECURRINGCHAR1BOOLE
NEED_ORGIs the org step needed? GRFN_NEED_ORGCHAR1BOOLE
NEED_ANAL_DATEis Analysis date needed GRFN_NEED_ANAL_DATECHAR1BOOLE

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRFNPLANUSAGE
INTO CORRESPONDING FIELDS OF WA_GRFNPLANUSAGE
WHERE...

How to access SAP table GRFNPLANUSAGE

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

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