P_Cfd_Field_Status
Status Values of Custom Fields
P_Cfd_Field_Status is a CDS View that provides data about "Status Values of Custom Fields" in SAP S/4HANA. It reads from 1 data source (P_Cfd_Domain_Value) and exposes 2 fields with key field Code. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_Cfd_Domain_Value | FieldStatus | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | P_Cfd_Domain_Value_Text | _Text | _Text.Code = $projection.Code and _Text.Name = 'CFD_FIELD_STATUS_UI' |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_CFD_FLD_STATUS | view | |
| EndUserText.label | Status Values of Custom Fields | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Code | P_Cfd_Domain_Value | Code | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'P_CFD_FLD_STATUS'
@EndUserText.label: 'Status Values of Custom Fields'
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
define view P_Cfd_Field_Status as
select from P_Cfd_Domain_Value as FieldStatus
association [1..*] to P_Cfd_Domain_Value_Text as _Text
on _Text.Code = $projection.Code
and _Text.Name = 'CFD_FIELD_STATUS_UI'
{
key FieldStatus.Code,
_Text
} where FieldStatus.Name = 'CFD_FIELD_STATUS_UI'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA