I_BudgetDocWorkFlowStatusText
Budget Document Work Flow Status - Text
I_BudgetDocWorkFlowStatusText is a Basic CDS View that provides data about "Budget Document Work Flow 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 (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBDGTDOCWFSTATT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Budget Document Work Flow Status - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BudgetDocWorkFlowStatus | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| BudgetDocWorkFlowStatusText | ||||
| DomainValue | dd07t | domvalue_l | ||
| _BudgetDocWorkFlowStatus | _BudgetDocWorkFlowStatus | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IBDGTDOCWFSTATT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Document Work Flow Status - Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel: {
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT ],
dataCategory: #TEXT,
representativeKey: 'BudgetDocWorkFlowStatus',
usageType: {
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
}
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_BudgetDocWorkFlowStatusText
as select from dd07t
association to parent I_BudgetDocWorkFlowStatus as _BudgetDocWorkFlowStatus on $projection.BudgetDocWorkFlowStatus = _BudgetDocWorkFlowStatus.BudgetDocWorkFlowStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_BudgetDocWorkFlowStatus'
@ObjectModel.text.element: ['BudgetDocWorkFlowStatusText']
key cast( cast ( substring( dd07t.domvalue_l, 1, 1 )
as abap.char( 1 ) ) as bdgt_doc_workflow_status ) as BudgetDocWorkFlowStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast ( dd07t.ddtext as bdgt_doc_workflow_status_text preserving type ) as BudgetDocWorkFlowStatusText,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
_BudgetDocWorkFlowStatus,
_Language
}
where domname = 'BDGT_DOC_WORKFLOW_STATUS'
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