I_ConfignRevsnStatusText
Configuration Revision Status Text
I_ConfignRevsnStatusText is a Basic CDS View that provides data about "Configuration Revision Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ConfignRevsnStatus, Language. 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 |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Configuration Revision Status Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ConfignRevsnStatus | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| CONFIGURATIONREVISIONMONITOR | CONFIGURATIONREVISIONMONITOR | V4 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConfignRevsnStatus | |||
| KEY | Language | |||
| ConfignRevsnStatusText | ||||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Configuration Revision Status Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
representativeKey: 'ConfignRevsnStatus',
resultSet.sizeCategory: #XS,
usageType: {
dataClass: #META,
sizeCategory: #S,
serviceQuality: #A
}
}
@VDM.viewType: #BASIC
@Search.searchable: true
define view entity I_ConfignRevsnStatusText as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast ( substring( domvalue_l, 1, 1 ) as cbc_rev_target_status preserving type ) as ConfignRevsnStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
@Search: {
ranking: #HIGH,
defaultSearchElement: true,
fuzzinessThreshold: 0.7
}
cast( ddtext as cbc_rev_target_status_desc preserving type ) as ConfignRevsnStatusText,
_Language
}
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