I_BudgetDocumentStatus
Budget Document Status
I_BudgetDocumentStatus is a Basic CDS View that provides data about "Budget Document Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BudgetDocumentStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BudgetDocumentStatusText | _Text | $projection.BudgetDocumentStatus = _Text.BudgetDocumentStatus |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.sqlViewName | IBDGTDOCSTATUS | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Budget Document Status | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | BudgetDocumentStatus | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BudgetDocumentStatus | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@AbapCatalog: { preserveKey:true,
compiler.compareFilter: true,
sqlViewName: 'IBDGTDOCSTATUS' }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Document Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: { usageType: { dataClass: #META,
serviceQuality: #C,
sizeCategory: #S },
resultSet.sizeCategory: #XS,
representativeKey: 'BudgetDocumentStatus' }
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_BudgetDocumentStatus
as select from dd07l
association [0..*] to I_BudgetDocumentStatusText as _Text on $projection.BudgetDocumentStatus = _Text.BudgetDocumentStatus
{
@ObjectModel.text.association: '_Text'
key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bdgt_docstate ) as BudgetDocumentStatus,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Consumption.hidden: true
dd07l.domvalue_l as DomainValue,
_Text
}
where domname = 'BDGT_DOCSTATE'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_BUDGETDOCUMENTSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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