I_BudgetEntryDocStatusText
Text of a Budget Entry Document Status
I_BudgetEntryDocStatusText is a Basic CDS View that provides data about "Text of a Budget Entry Document Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, BudgetEntryDocumentStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AbapCatalog.sqlViewName | IFMBdgtDocStsT | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Text of a Budget Entry Document Status | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BudgetEntryDocumentStatus | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | BudgetEntryDocumentStatus | |||
| BudgetEntryDocumentStatusName |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@AbapCatalog.sqlViewName: 'IFMBdgtDocStsT'
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Text of a Budget Entry Document Status'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BudgetEntryDocumentStatus'
define view I_BudgetEntryDocStatusText
as select from dd07t
{
@Semantics.language: true
key cast( ddlanguage as spras ) as Language,
key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bued_docstate ) as BudgetEntryDocumentStatus,
@Semantics.text: true
cast ( substring ( ddtext, 1, 45 ) as fmis_bdgtdocstatus_name ) as BudgetEntryDocumentStatusName
}
where
domname = 'BUED_DOCSTATE'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"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