I_BOOVersionStatusText

DDL: I_BOOVERSIONSTATUSTEXT SQL: IBOOVERSSTATUTXT Type: view BASIC Package: VDM_PP_MD_RTG

Bill of Operations Version Status - Text

I_BOOVersionStatusText is a Basic CDS View that provides data about "Bill of Operations Version Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields BillOfOperationsVersionStatus, Language. It has 1 association to related views. Part of development package VDM_PP_MD_RTG.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IBOOVERSSTATUTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey BillOfOperationsVersionStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Bill of Operations Version Status - Text view
ObjectModel.sapObjectNodeType.name BillOfOpsVersionStatusText view
Analytics.dataExtraction.enabled true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsVersionStatus
KEY Language
BOOVersionStatusText
Associations_Language
@AbapCatalog.sqlViewName: 'IBOOVERSSTATUTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'BillOfOperationsVersionStatus'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #META}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Bill of Operations Version Status - Text'
@ObjectModel.sapObjectNodeType.name: 'BillOfOpsVersionStatusText'
@Analytics.dataExtraction.enabled: true

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_BOOVersionStatusText
  as select from dd07t as txt

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
      @ObjectModel.text.element: 'BOOVersionStatusText'
  key cast(substring(txt.domvalue_l, 1, 2) as plnversn_status preserving type)        as BillOfOperationsVersionStatus,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras preserving type)                                   as Language,
      @Semantics.text: true
      cast(substring(txt.ddtext, 1, 30) as plnversn_status_txt preserving type)       as BOOVersionStatusText,

      --- Associations ---
      _Language
}
where
      txt.domname  = 'PLNVERSN_STATUS'
  and txt.as4local = 'A'
  and txt.as4vers  = '0000';