I_BudgetEntryDocStatusTextD
Text of a budget entry document status
I_BudgetEntryDocStatusTextD is a Basic CDS View that provides data about "Text of a budget entry document status" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07t) and exposes 4 fields with key fields Language, BudgetEntryDocumentStatus, BudgetEntryDocumentStatus.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMBDGTDOCSTTD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Text of a budget entry document status | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BudgetEntryDocumentStatus | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | BudgetEntryDocumentStatus | |||
| KEY | BudgetEntryDocumentStatus | |||
| BudgetEntryDocumentStatusName |
@AbapCatalog.sqlViewName: 'IFMBDGTDOCSTTD'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@EndUserText.label: 'Text of a budget entry document status'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BudgetEntryDocumentStatus'
define view I_BudgetEntryDocStatusTextD
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_WITH_DRAFT'
and as4local = 'A'
and valpos = '0005'
and as4vers is initial
union
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'
and valpos <> '0005'
and as4vers is initial
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