I_PPM_Priority

DDL: I_PPM_PRIORITY SQL: IPPMPRIORITY Type: view BASIC

Priority Codes

I_PPM_Priority is a Basic CDS View that provides data about "Priority Codes" in SAP S/4HANA. It reads from 1 data source (dpr_priority) and exposes 2 fields with key field PriorityCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dpr_priority dpr_priority from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PPM_PriorityText _Text $projection.PriorityCode = _Text.PriorityCode

Annotations (11)

NameValueLevelField
EndUserText.label Priority Codes view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPPMPRIORITY view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_ALLOWED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey PriorityCode view
ObjectModel.resultSet.sizeCategory #XS view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PriorityCode
_Text _Text
@EndUserText.label: 'Priority Codes' 
@VDM.viewType: #BASIC 
@AbapCatalog.sqlViewName: 'IPPMPRIORITY'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_ALLOWED


@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@ObjectModel.representativeKey: 'PriorityCode'

@ObjectModel.resultSet.sizeCategory: #XS
@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API

define view I_PPM_Priority as select from dpr_priority
  
  association [0..*] to I_PPM_PriorityText as _Text on $projection.PriorityCode = _Text.PriorityCode

{
  @ObjectModel.text.association: '_Text'
  key cast(lpad(cast(priority as abap.char(3)),3,'0')as abap.numc(3)) as PriorityCode,  
   _Text
}                       
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DPR_PRIORITY"
],
"ASSOCIATED":
[
"I_PPM_PRIORITYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/