I_CustMgmtPriorityText

DDL: I_CUSTMGMTPRIORITYTEXT Type: view_entity BASIC Package: CRMS4_SERVICE_ORDER_BO

Customer Management Priority Text

I_CustMgmtPriorityText is a Basic CDS View that provides data about "Customer Management Priority Text" in SAP S/4HANA. It reads from 1 data source (scpriot) and exposes 5 fields with key fields ServiceDocumentPriority, Language. It has 2 associations to related views. Part of development package CRMS4_SERVICE_ORDER_BO.

Data Sources (1)

SourceAliasJoin Type
scpriot scpriot from

Associations (2)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer Management Priority Text view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName ICMGMTPRIOTEXT view
ObjectModel.representativeKey ServiceDocumentPriority view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentPriority priority
KEY Language langu
ServiceDocumentPriorityName txt_long
_CustMgmtPriority _CustMgmtPriority
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Customer Management Priority Text'
@VDM.viewType: #BASIC

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'ICMGMTPRIOTEXT'
@ObjectModel.representativeKey: 'ServiceDocumentPriority'

@Metadata.ignorePropagatedAnnotations: true

define view entity I_CustMgmtPriorityText
  as select from scpriot
  association [1..1] to I_CustMgmtPriority as _CustMgmtPriority on $projection.ServiceDocumentPriority = _CustMgmtPriority.ServiceDocumentPriority
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_CustMgmtPriority'
  key priority         as ServiceDocumentPriority,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key langu            as Language,
      @Semantics.text: true
      txt_long         as ServiceDocumentPriorityName,

      _CustMgmtPriority,
      _Language
}