I_DeliveryPriorityText

DDL: I_DELIVERYPRIORITYTEXT SQL: ILEDELIVPRIOT Type: view BASIC

Delivery Priority - Text

I_DeliveryPriorityText is a Basic CDS View that provides data about "Delivery Priority - Text" in SAP S/4HANA. It reads from 1 data source (tprit) and exposes 5 fields with key fields DeliveryPriority, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tprit tprit from

Associations (2)

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

Annotations (13)

NameValueLevelField
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DeliveryPriority view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Delivery Priority - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEDELIVPRIOT view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DeliveryPriority lprio
KEY Language spras
DeliveryPriorityDesc bezei
_DeliveryPriority _DeliveryPriority
_Language _Language
@Analytics.dataExtraction.enabled: true //Inserted by VDM CDS Suite Plugin

@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DeliveryPriority'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'DeliveryPriority'

//Commented by VDM CDS Suite Plugin:@ObjectModel.dataCategory: #TEXT

@EndUserText.label: 'Delivery Priority - Text'
//Commented by VDM CDS Suite Plugin:@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILEDELIVPRIOT'
@Metadata.ignorePropagatedAnnotations:true 
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]
@Search.searchable: true

define view I_DeliveryPriorityText
as select from
tprit
association [0..1] to I_DeliveryPriority as _DeliveryPriority on $projection.DeliveryPriority = _DeliveryPriority.DeliveryPriority
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{       
    @ObjectModel.foreignKey.association: '_DeliveryPriority'
    key lprio as DeliveryPriority,
    
    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language'
    key spras as Language,
    
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.8
    @Search.ranking: #HIGH
    @Semantics.text:true
    bezei as DeliveryPriorityDesc,
    
    //Associations

    _DeliveryPriority, 
    _Language
};   
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TPRIT"
],
"ASSOCIATED":
[
"I_DELIVERYPRIORITY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/