I_MDGovChgReqEditionStatusTxt
MDG Edition Status Text
I_MDGovChgReqEditionStatusTxt is a Basic CDS View that provides data about "MDG Edition Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields MDGovEditionStatus, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | _Text | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MDGovChangeRequestEdition | _MDGovChangeRequestEdition | $projection.MDGovEditionStatus = _MDGovChangeRequestEdition.MDGovEditionStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDGCREDTNTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | MDGovEditionStatus | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | MDG Edition Status Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDGovEditionStatus | |||
| KEY | Language | ddlanguage | ||
| MDGovEditionStatusText | dd07t | ddtext | Edition Status Description | |
| _MDGovChangeRequestEdition | _MDGovChangeRequestEdition | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMDGCREDTNTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: { dataClass: #META, serviceQuality: #C, sizeCategory: #L }
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MDGovEditionStatus'
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'MDG Edition Status Text'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_MDGovChgReqEditionStatusTxt
as select from dd07t as _Text
association [0..*] to I_MDGovChangeRequestEdition as _MDGovChangeRequestEdition on $projection.MDGovEditionStatus = _MDGovChangeRequestEdition.MDGovEditionStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast ( substring( domvalue_l, 1, 1 ) as xfeld preserving type ) as MDGovEditionStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.7, ranking: #LOW }
@Semantics.text: true
@EndUserText.label: 'Edition Status Description'
_Text.ddtext as MDGovEditionStatusText,
_MDGovChangeRequestEdition,
_Language
}
where
_Text.domname = 'USMD_EDITION_STATUS'
and _Text.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MDGOVCHANGEREQUESTEDITION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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