I_BkStmntPartialApplStatusText
Partial Application Status - Text
I_BkStmntPartialApplStatusText is a Basic CDS View that provides data about "Partial Application Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, BkStmntPartialApplStatus. It has 1 association to related views. Part of development package ODATA_BS_ITEM_REPROCESS.
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 (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Partial Application Status - Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | BkStmntPartialApplStatus | view | |
| Analytics.technicalName | IBSPRTLAPPLSTATT | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
@EndUserText.label: 'Partial Application Status - Text'
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'BkStmntPartialApplStatus'
@Analytics.technicalName: 'IBSPRTLAPPLSTATT'
@ObjectModel: { usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING,
usageType.serviceQuality: #A,
resultSet.sizeCategory: #XS,
dataCategory: #TEXT }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view entity I_BkStmntPartialApplStatusText
as select from dd07t
association[0..1] to I_BkStmntPartialApplStatus as _BkStmntPartialApplStatus
on $projection.BkStmntPartialApplStatus = _BkStmntPartialApplStatus.BkStmntPartialApplStatus
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_BkStmntPartialApplStatus'
@ObjectModel.text.element: ['BkStmntPartialApplStatusName']
key cast( substring( dd07t.domvalue_l, 1, 1) as feb_part_appl_status ) as BkStmntPartialApplStatus,
@Analytics.hidden: true
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
// @EndUserText.label: 'Partial Application Status Desc.'
dd07t.ddtext as BkStmntPartialApplStatusName,
//Associations
_BkStmntPartialApplStatus,
_Language
}
where dd07t.domname = 'FEB_PART_APPL_STATUS'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
and domvalue_l <> ''
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