SAP FIP_D_SUBST_C Customizing Table Extension Logic Table data and field list

FIP_D_SUBST_C is a standard SAP Table which is used to store Customizing Table Extension Logic data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FIP_D_SUBST_C table consists of various fields, each holding specific information or linking keys about Customizing Table Extension Logic data available in SAP. These include SUBST_RUN (Activate Substitution Processing), MSG_LOG_ACTIVE (Activate the Application Log for object FIP/SUBST_GR), MSG_INFO_TYPE (Material Subst.: Message Types for Application Log), DAYSNO_DELETE_WL (Number of days until deleting the enteries from work list)... 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. .

FIP_D_SUBST_C 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 FIP_D_SUBST_C 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 FIP_D_SUBST_C 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
SUBST_RUNActivate Substitution Processing FIP_SUBST_RUNCHAR1FIP_SUBST_RUN
MSG_LOG_ACTIVEActivate the Application Log for object FIP/SUBST_GR FIP_MSG_LOG_ACTIVECHAR1XFELD
MSG_INFO_TYPEMaterial Subst.: Message Types for Application Log FIP_SUBST_MSG_TYPECHAR1FIP_SUBST_MSG_TYPE
DAYSNO_DELETE_WLNumber of days until deleting the enteries from work list FIP_DAYSNO_DELETE_WLNUMC5NUMC

Key field Non-key field



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

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

SELECT SINGLE *
FROM FIP_D_SUBST_C
INTO CORRESPONDING FIELDS OF WA_FIP_D_SUBST_C
WHERE...

How to access SAP table FIP_D_SUBST_C

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

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