SAP CIFAPLSET2 Application-Specific Settings, Target System-Independent Table data and field list

CIFAPLSET2 is a standard SAP Table which is used to store Application-Specific Settings, Target System-Independent data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CIFAPLSET2 table consists of various fields, each holding specific information or linking keys about Application-Specific Settings, Target System-Independent data available in SAP. These include STK_READ (Indicator Whether Stock Values Should be Read Again), FCSTCIFOBJ (Use Own Filter Object Type for Requirements Reduction), TRANSMAT (Change Transfer for Material Master), TRANSCUS (Change Transfer for Customers)... 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. .

CIFAPLSET2 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: Cannot Be Enhanced


SAP CIFAPLSET2 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 CIFAPLSET2 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
STK_READIndicator Whether Stock Values Should be Read Again CIFSTKREADCHAR1CIFSTKREAD
FCSTCIFOBJUse Own Filter Object Type for Requirements Reduction CIFFCSTOBJCHAR1CIFFCSTOBJ
TRANSMATChange Transfer for Material Master CIFTRANSFCHAR1CIFTRANSF
TRANSCUSChange Transfer for Customers CIFTRANCUSCHAR1CIFTRANSF
TRANSVENChange Transfer for Vendors CIFTRANVENCHAR1CIFTRANSF
UPDCNTPRODCross-System Update Logic for Manufacturing Orders CIFUPCPRODCHAR1CIFUPDUSE
CRESC_DAYMTransfer Resource to APO: Gen. Time Period Ext. Cap. in Past CRESC_DAYMNUMC4CRESC_DAYS
CRESC_DAYPTransfer Res. to APO: Gen. Time Period Ext. Cap. in Future CRESC_DAYPNUMC4CRESC_DAYS
CRESC_DEFMTransfer Resource to APO: Resource Type (Multi) CRESC_DEFMNUMC2CRESC_DEFR
CRESC_DEFSTransfer Resource to APO: Resource Type (Single) CRESC_DEFSNUMC2CRESC_DEFR
CRESC_EXTOResource Transfer to APO: Use External Capacity CRESC_EXTOCHAR1CRESC_EXTO
CRESC_MODEResource Transfer to APO: Change Transfer Mode CRESC_MODECHAR1CRESC_MODE
CRESC_SYNCResource Transfer to APO: Immediately or Periodically CRESC_SYNCCHAR1CRESC_SYNC
UPDNCTSSAGCross-System Update Logic for Sales Scheduling Agreements CIFUPCSSAGCHAR1CIFUPDUSE
CFGSYS_LVLTransfer of Default Values for Configuration Relevance CIFCFGSLVLCHAR1CIFCFGSLVL
UPDCNTNETWCross-System Update Logic for Networks CIFUPCNETWCHAR1CIFUPDUSE
TRANSSTGChange Transfer for Setup Groups CIFTRANSTGCHAR1CIFTRANSF
MULTI_PDSTransfer multiple selection of PDS CIF_MPDSCHAR1CIF_MPDS

Key field Non-key field



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

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

SELECT SINGLE *
FROM CIFAPLSET2
INTO CORRESPONDING FIELDS OF WA_CIFAPLSET2
WHERE...

How to access SAP table CIFAPLSET2

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

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