I_ChmlCmplncMktReqSts
Request Status
I_ChmlCmplncMktReqSts is a Basic CDS View that provides data about "Request Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ChmlCmplncReqStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | ChmlCmplncMktReqSts | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ChmlCmplncMktReqStsTxt | _Text | $projection.ChmlCmplncReqStatus = _Text.ChmlCmplncReqStatus |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Request Status | view | |
| AbapCatalog.sqlViewName | ICCMKTREQSTS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | ChmlCmplncReqStatus | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCmplncReqStatus | |||
| _Text | _Text |
@EndUserText.label: 'Request Status'
@AbapCatalog:
{
sqlViewName: 'ICCMKTREQSTS',
compiler.compareFilter: true
}
@AccessControl:
{
-- Customizing values of Request Status --> No auth. check necessary
authorizationCheck: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
usageType:
{
dataClass: #META,
sizeCategory: #S,
serviceQuality: #B
},
representativeKey: 'ChmlCmplncReqStatus'
}
define view I_ChmlCmplncMktReqSts
as select from dd07l as ChmlCmplncMktReqSts
--Text association
association [0..*] to I_ChmlCmplncMktReqStsTxt as _Text on $projection.ChmlCmplncReqStatus = _Text.ChmlCmplncReqStatus
{
@ObjectModel.text.association: '_Text'
key substring(ChmlCmplncMktReqSts.domvalue_l, 1, 10) as ChmlCmplncReqStatus,
_Text
}
where
ChmlCmplncMktReqSts.domname = 'EHFND_CCI_MREQ_STATUS'
and ChmlCmplncMktReqSts.as4local = 'A'
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