I_Prioritycode

DDL: I_PRIORITYCODE SQL: IPRIORITYCODE Type: view BASIC

Priority Code Details

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

Data Sources (1)

SourceAliasJoin Type
tcn07 tcn07 from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPRIORITYCODE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PriorityCode view
EndUserText.label Priority Code Details view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.sapObjectNodeType.name ProjectObjectPriorityCode view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PriorityCode tcn07 nprio
_Text _Text
@AbapCatalog.sqlViewName: 'IPRIORITYCODE'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }

@ObjectModel.representativeKey: 'PriorityCode'
@EndUserText.label: 'Priority Code Details'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.sapObjectNodeType.name: 'ProjectObjectPriorityCode'
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities:  [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
//@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API


define view I_Prioritycode
  as select from tcn07
  association [0..*] to I_Prioritycodetext as _Text on $projection.PriorityCode = _Text.PriorityCode
{
  @ObjectModel.text.association: '_Text'
  key tcn07.nprio as PriorityCode,
      
  _Text


}