I_BudgetDocumentStatusText
Budget Document Status - Text
I_BudgetDocumentStatusText 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 fields Language, BudgetDocumentStatus. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_BudgetDocumentStatus | _BudgetDocumentStatus | $projection.BudgetDocumentStatus = _BudgetDocumentStatus.BudgetDocumentStatus |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AbapCatalog.sqlViewName | IBDGTDOCSTATUST | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BudgetDocumentStatus | view | |
| EndUserText.label | Budget Document Status - Text | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | dd07t | ddlanguage | |
| KEY | BudgetDocumentStatus | |||
| BudgetDocumentStatusText | ||||
| _Language | _Language | |||
| _BudgetDocumentStatus | _BudgetDocumentStatus |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@AbapCatalog.sqlViewName: 'IBDGTDOCSTATUST'
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BudgetDocumentStatus'
@EndUserText.label: 'Budget Document Status - Text'
@Search.searchable: true
define view I_BudgetDocumentStatusText
as select from dd07t
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_BudgetDocumentStatus as _BudgetDocumentStatus on $projection.BudgetDocumentStatus = _BudgetDocumentStatus.BudgetDocumentStatus
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@ObjectModel.foreignKey.association: '_BudgetDocumentStatus'
key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bdgt_docstate ) as BudgetDocumentStatus,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
cast ( dd07t.ddtext as bdgt_docstate_text ) as BudgetDocumentStatusText,
_Language,
_BudgetDocumentStatus
}
where
dd07t.domname = 'BDGT_DOCSTATE'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BUDGETDOCUMENTSTATUS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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