I_BOOVersionTypeText

DDL: I_BOOVERSIONTYPETEXT SQL: IPPBOOVTYPETEXT Type: view BASIC

Bill of Operations Version Type - Text

I_BOOVersionTypeText is a Basic CDS View that provides data about "Bill of Operations Version Type - Text" in SAP S/4HANA. It reads from 1 data source (tca01_subtypet) and exposes 5 fields with key fields Language, BillOfOperationsVersionType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tca01_subtypet tca01_subtypet from

Associations (2)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IPPBOOVTYPETEXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BillOfOperationsVersionType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Bill of Operations Version Type - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY BillOfOperationsVersionType subtype
BOOVersionTypeName txt
_Language _Language
_BillOfOperationsVersionType _BillOfOperationsVersionType
@AbapCatalog.sqlViewName: 'IPPBOOVTYPETEXT'
@AbapCatalog.buffering: { status: #ACTIVE, type: #FULL }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true 
@ObjectModel.representativeKey: 'BillOfOperationsVersionType'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Bill of Operations Version Type - Text'

define view I_BOOVersionTypeText
  as select from tca01_subtypet

  association [0..1] to I_Language                    as _Language                    on $projection.Language = _Language.Language
  association [0..1] to I_BillOfOperationsVersionType as _BillOfOperationsVersionType on $projection.BillOfOperationsVersionType = _BillOfOperationsVersionType.BillOfOperationsVersionType
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key spras                                               as Language,
      @ObjectModel.foreignKey.association: '_BillOfOperationsVersionType'
      @ObjectModel.text.element: 'BOOVersionTypeName'
  key subtype as BillOfOperationsVersionType,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      txt                                                 as BOOVersionTypeName,

      // Associations

      _Language,
      _BillOfOperationsVersionType
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCA01_SUBTYPET"
],
"ASSOCIATED":
[
"I_BILLOFOPERATIONSVERSIONTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/