SAP CFS_STATUS CFS: Additional (Mapping) Data for Status Table data and field list

CFS_STATUS is a standard SAP Table which is used to store CFS: Additional (Mapping) Data for Status data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CFS_STATUS table consists of various fields, each holding specific information or linking keys about CFS: Additional (Mapping) Data for Status data available in SAP. These include STATUS_ID (Status ID), PROFILE_ID (Status Profile ID), BSVA_STATUS_KEY (User Status), BSVA_PROFILE_KEY (Status Profile)... 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. .

CFS_STATUS table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP CFS_STATUS 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 CFS_STATUS 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
STATUS_IDStatus ID CFS_STATUS_IDCHAR32SYSUUID_C
PROFILE_IDStatus Profile ID CFS_STATUS_PROFILE_IDCHAR32SYSUUID_C
BSVA_STATUS_KEYUser Status J_ESTATCHAR5Assigned to domainJ_ESTAT
BSVA_PROFILE_KEYStatus Profile J_STSMACHAR8Assigned to domainJ_STSMA
NAMEStatus name CFS_STATUS_NAMESSTR64
DESCRIPTIONStatus Description CFS_STATUS_DESCRSTRG0
CREATED_BYCreated By CFS_CREATED_BYCHAR12USNAM
CREATED_ONUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS
CHANGED_BYChanged by CFS_CHANGED_BYCHAR12USNAM
CHANGED_ONUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS

Key field Non-key field



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

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

SELECT SINGLE *
FROM CFS_STATUS
INTO CORRESPONDING FIELDS OF WA_CFS_STATUS
WHERE...

How to access SAP table CFS_STATUS

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

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