I_EntProjChangeIndicator
Chg Ind for Chg Documents of Ent Proj
I_EntProjChangeIndicator is a Basic CDS View that provides data about "Chg Ind for Chg Documents of Ent Proj" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ChangeDocItemChangeType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EntProjChangeIndicatorText | _Text | $projection.ChangeDocItemChangeType = _Text.ChangeDocItemChangeType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Chg Ind for Chg Documents of Ent Proj | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AbapCatalog.sqlViewName | IPROJCHGIND | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | ChangeDocItemChangeType | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeDocItemChangeType | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@EndUserText.label: 'Chg Ind for Chg Documents of Ent Proj'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@AbapCatalog: {
sqlViewName: 'IPROJCHGIND',
compiler.compareFilter: true,
preserveKey: true
}
// Authorization handling
@AccessControl.authorizationCheck: #NOT_REQUIRED
//TODO: what is this for ?
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
representativeKey: 'ChangeDocItemChangeType',
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
define view I_EntProjChangeIndicator as select from dd07l
association [0..*] to I_EntProjChangeIndicatorText as _Text on $projection.ChangeDocItemChangeType = _Text.ChangeDocItemChangeType
{
@ObjectModel.text.association: '_Text'
key cast ( substring( domvalue_l, 1, 2 ) as cdchngind ) as ChangeDocItemChangeType,
dd07l.domvalue_l as DomainValue,
_Text
}
where
domname = '/S4PPM/CHANGEDOC_CHNGIND' and
as4vers = '0000' and
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