I_GteeMBdgtEntryDocStatusText
Budget Document Status - Text
I_GteeMBdgtEntryDocStatusText is a Basic CDS View that provides data about "Budget Document Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key field Language. It has 1 association to related views.
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 (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IGMBDGTDOCSTATT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Budget Document Status - Text | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | GteeMBudgetEntryDocStatus | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'IGMBDGTDOCSTATT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Document Status - Text'
@VDM.viewType: #BASIC
@Analytics.dataExtraction.enabled: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'GteeMBudgetEntryDocStatus',
usageType: {
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT ]
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_GteeMBdgtEntryDocStatusText
as select from dd07t
association to parent I_GteeMBdgtEntryDocStatus as _GteeMBdgtEntryDocStatus on $projection.GteeMBudgetEntryDocStatus = _GteeMBdgtEntryDocStatus.GteeMBudgetEntryDocStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( dd07t.ddlanguage as spras ) as Language,
@ObjectModel.foreignKey.association: '_GteeMBdgtEntryDocStatus'
@ObjectModel.text.element: ['GteeMBudgetEntryDocStatusName']
key cast ( cast ( substring( dd07t.domvalue_l, 1, 1 )
as abap.char( 1 ) ) as gmis_bdgt_docstate ) as GteeMBudgetEntryDocStatus,
@Consumption.hidden: true
@Analytics.hidden: true
dd07t.domvalue_l as DomainValue,
@Semantics.text: true
cast ( substring ( dd07t.ddtext, 1, 45 )
as gmis_bdgt_doc_status_name ) as GteeMBudgetEntryDocStatusName,
@Consumption.hidden: true
@Analytics.hidden: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
dd07t.ddtext as DomainValueName,
_GteeMBdgtEntryDocStatus,
_Language
}
where
domname = 'GM_BDGT_DOCSTATE'
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