I_DeliveryPriority

DDL: I_DELIVERYPRIORITY SQL: ILEDELIVPRIO Type: view BASIC

Delivery Priority

I_DeliveryPriority is a Basic CDS View (Dimension) that provides data about "Delivery Priority" in SAP S/4HANA. It reads from 1 data source (tprio) and exposes 3 fields with key field DeliveryPriority. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tprio tprio from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DeliveryPriorityText _Text $projection.DeliveryPriority = _Text.DeliveryPriority

Annotations (14)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DeliveryPriority lprio
DeliveryPriorityDesc
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

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

@EndUserText.label: 'Delivery Priority'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: false }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILEDELIVPRIO'
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #ANALYTICAL_DIMENSION, #SEARCHABLE_ENTITY ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]
@ObjectModel.sapObjectNodeType.name: 'DeliveryPriority'

define view I_DeliveryPriority
  as select from tprio
  association [0..*] to I_DeliveryPriorityText as _Text on $projection.DeliveryPriority = _Text.DeliveryPriority
{
    @Search.defaultSearchElement:true
    @ObjectModel.text.association: '_Text'
    @Search.fuzzinessThreshold: 0.8
    @Search.ranking: #HIGH
    key lprio                                                                         as DeliveryPriority,

    cast(_Text[1: Language=$session.system_language].DeliveryPriorityDesc as bezei30) as DeliveryPriorityDesc,

    _Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DELIVERYPRIORITYTEXT",
"TPRIO"
],
"ASSOCIATED":
[
"I_DELIVERYPRIORITYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/