I_BkStmntPartialApplStatusText

DDL: I_BKSTMNTPARTIALAPPLSTATUSTEXT Type: view_entity BASIC Package: ODATA_BS_ITEM_REPROCESS

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)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY BkStmntPartialApplStatus
DomainValue dd07t domvalue_l
BkStmntPartialApplStatusName dd07t ddtext
_BkStmntPartialApplStatus _BkStmntPartialApplStatus
_Language _Language
@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 <> ''