I_ConfignRevsnStatus
Configuration Revision Status
I_ConfignRevsnStatus is a Basic CDS View that provides data about "Configuration Revision Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ConfignRevsnStatus. It has 1 association to related views. It is exposed through 1 OData service (CONFIGURATIONREVISIONMONITOR). Part of development package S_CBC_REV_REQ.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | ConfignRevsnStatus | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ConfignRevsnStatusText | _ConfignRevsnStatusText | $projection.ConfignRevsnStatus = _ConfignRevsnStatusText.ConfignRevsnStatus |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Configuration Revision Status | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ConfignRevsnStatus | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| VDM.viewType | #BASIC | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| CONFIGURATIONREVISIONMONITOR | CONFIGURATIONREVISIONMONITOR | V4 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConfignRevsnStatus | |||
| _ConfignRevsnStatusText | _ConfignRevsnStatusText |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Configuration Revision Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
representativeKey: 'ConfignRevsnStatus',
resultSet.sizeCategory: #XS,
dataCategory: #VALUE_HELP,
usageType: {
dataClass: #META,
sizeCategory: #S,
serviceQuality: #A
}
}
@VDM.viewType: #BASIC
define view entity I_ConfignRevsnStatus as select from dd07l as ConfignRevsnStatus
association [0..*] to I_ConfignRevsnStatusText as _ConfignRevsnStatusText on $projection.ConfignRevsnStatus = _ConfignRevsnStatusText.ConfignRevsnStatus
{
@ObjectModel.text.association: '_ConfignRevsnStatusText'
key cast ( substring( domvalue_l, 1, 1 ) as cbc_rev_target_status preserving type ) as ConfignRevsnStatus,
@UI.hidden: true
cast(case domvalue_l
when 'C' then 3
when 'W' then 2
when 'E' then 1
when 'F' then 1
else 0
end as int1 preserving type ) as ConfignRevsnStatusCriticality,
_ConfignRevsnStatusText
}
where
domname = 'CBC_REV_TARGET_STATUS'
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