I_ChmlCmpstnProcgSts
Composition Processing Status
I_ChmlCmpstnProcgSts is a Basic CDS View that provides data about "Composition Processing Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ChmlCompositionStatus. It has 1 association to related views. Part of development package EHFND_BO_CMPS_COMN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ChmlCmpstnProcgStsTxt | _Text | $projection.ChmlCompositionStatus = _Text.ChmlCompositionStatus |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Composition Processing Status | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | ChmlCompositionStatus | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCompositionStatus | |||
| _Text | _Text |
--Label of view
@EndUserText.label: 'Composition Processing Status'
--Access Control: Authorizations Checks
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED // as view only reads customizing values
}
--VDM view type
@VDM.viewType: #BASIC
@ObjectModel:
{
--Performance Annotations
usageType:
{
dataClass: #MASTER,
sizeCategory: #S,
serviceQuality: #B
},
representativeKey: 'ChmlCompositionStatus'
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_ChmlCmpstnProcgSts
as select from dd07l
--Text association
association [0..*] to I_ChmlCmpstnProcgStsTxt as _Text on $projection.ChmlCompositionStatus = _Text.ChmlCompositionStatus
{
@ObjectModel.text.association: '_Text'
key cast(domvalue_l as ehfnd_cci_ccmps_status) as ChmlCompositionStatus,
/*Association*/
_Text
}
where
as4local = 'A'
and as4vers = '0000'
and domname = 'EHFND_CCI_CCMPS_STATUS'
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