SAP CFLT_CAT SDP-FLT: Customizing for SDP-FLT (VMRS) Table data and field list

CFLT_CAT is a standard SAP Table which is used to store SDP-FLT: Customizing for SDP-FLT (VMRS) data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CFLT_CAT table consists of various fields, each holding specific information or linking keys about SDP-FLT: Customizing for SDP-FLT (VMRS) data available in SAP. These include J_3GTPLKZ (Catalog Code), FLD_RIHSTPX (Field Name), WACC_ART (Catalog), WACC_GRP (Code Group)... 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. .

CFLT_CAT 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 CFLT_CAT 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 CFLT_CAT 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 MANDTCLNT3T000MANDT
J_3GTPLKZCatalog Code J_3GTPLKZCHAR5J_3GT370SJ_3GTPLKZJ2R
FLD_RIHSTPXField Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
WACC_ARTCatalog QKATARTCHAR1Assigned to domainQKATARTQKT
WACC_GRPCode Group QCODEGRPCHAR8Assigned to domainQCODEGRPCGP
POSC_ARTCatalog QKATARTCHAR1Assigned to domainQKATARTQKT
POSC_GRPACode Group QCODEGRPCHAR8Assigned to domainQCODEGRPCGP
POSC_GRPBCode Group QCODEGRPCHAR8Assigned to domainQCODEGRPCGP
POSC_GRPCCode Group QCODEGRPCHAR8Assigned to domainQCODEGRPCGP
FLD_VMRS33Field Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
FLD_VMRS15Field Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
FLD_VMRS79Field Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
USR_FLD_SLWIDKey word ID for user-defined fields SLWIDCHAR7Assigned to domainSLWID
USR_FLD_VMRS33Field Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
USR_FLD_VMRS15Field Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
USR_FLD_VMRS79Field Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
EQUI_CODESFleet SDP: Use Vehicle VMRS FLT_FLTCODESCHAR1KREUZ
PROP_TXTFleet SDP: Propose VMRS Text FLT_PROP_TXTCHAR1KREUZ

Key field Non-key field



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

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

SELECT SINGLE *
FROM CFLT_CAT
INTO CORRESPONDING FIELDS OF WA_CFLT_CAT
WHERE...

How to access SAP table CFLT_CAT

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

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