I_CasePriority

DDL: I_CASEPRIORITY SQL: ICASEPRIORITY Type: view BASIC Package: SRM_GENERAL_VIEWS

Case Priority

I_CasePriority is a Basic CDS View that provides data about "Case Priority" in SAP S/4HANA. It reads from 1 data source (scmgattr_prio) and exposes 2 fields with key field CasePriority. It has 1 association to related views. Part of development package SRM_GENERAL_VIEWS.

Data Sources (1)

SourceAliasJoin Type
scmgattr_prio scmgattr_prio from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CasePriorityText _Text $projection.CasePriority = _Text.CasePriority

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ICASEPRIORITY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Case Priority view
VDM.viewType #BASIC view
ObjectModel.representativeKey CasePriority view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CasePriority scmgattr_prio priority
_Text _Text
@AbapCatalog.sqlViewName: 'ICASEPRIORITY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Case Priority'
//@Analytics.dataCategory: #DIMENSION

@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'CasePriority'
define view I_CasePriority
  as select from scmgattr_prio

  association [0..*] to I_CasePriorityText as _Text on $projection.CasePriority = _Text.CasePriority

{
      @ObjectModel.text.association: '_Text'
  key scmgattr_prio.priority as CasePriority,

      _Text

}