I_BdgtEntryDocReversalStsText
Budget Document Reversal Status - Text
I_BdgtEntryDocReversalStsText is a Basic CDS View that provides data about "Budget Document Reversal Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 7 fields with key fields Language, BdgtEntryDocReversalStatus. 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 (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMBDGTDOCRSTST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BdgtEntryDocReversalStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Budget Document Reversal Status - Text | view |
@AbapCatalog.sqlViewName: 'IFMBDGTDOCRSTST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'BdgtEntryDocReversalStatus',
usageType: {
serviceQuality: #A,
dataClass: #META,
sizeCategory: #S
},
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT]
}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Budget Document Reversal Status - Text'
define view I_BdgtEntryDocReversalStsText
as select from dd07t
association to parent I_BdgtEntryDocReversalStatus as _BdgtEntryDocReversalStatus on $projection.BdgtEntryDocReversalStatus = _BdgtEntryDocReversalStatus.BdgtEntryDocReversalStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_BdgtEntryDocReversalStatus'
@ObjectModel.text.element: ['BdgtEntryDocReversalStatusName']
key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bp_rstat preserving type ) as BdgtEntryDocReversalStatus,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Semantics.text: true
cast ( substring ( ddtext, 1, 45 ) as fmis_bdgtdocrvslstatus_name preserving type ) as BdgtEntryDocReversalStatusName,
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
dd07t.ddtext as DomainValueName,
_BdgtEntryDocReversalStatus,
_Language
}
where
domname = 'BP_RSTAT'
and as4local = 'A'
and as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BDGTENTRYDOCREVERSALSTATUS",
"I_LANGUAGE"
],
"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