I_PPM_CriticalityCode

DDL: I_PPM_CRITICALITYCODE SQL: IPPMCRITICODE Type: view BASIC Package: PPM_OBJECTS_DEPRECATED

Criticality code

I_PPM_CriticalityCode is a Basic CDS View that provides data about "Criticality code" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CriticalityCode. It has 1 association to related views. Part of development package PPM_OBJECTS_DEPRECATED.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PPM_CriticalityText _Text $projection.CriticalityCode = _Text.CriticalityCode

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPPMCRITICODE view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Criticality code view
ObjectModel.representativeKey CriticalityCode view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CriticalityCode
_Text _Text
@AbapCatalog.sqlViewName: 'IPPMCRITICODE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Criticality code'
@ObjectModel:
{
   representativeKey: 'CriticalityCode',
   resultSet.sizeCategory: #XS,
   usageType:
   {
      serviceQuality: #C,
      dataClass: #MASTER,
      sizeCategory:   #S
   }
}
@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API
define view I_PPM_CriticalityCode
 as select from dd07l

  association [0..*] to I_PPM_CriticalityText as _Text on $projection.CriticalityCode = _Text.CriticalityCode

{
      @ObjectModel.text.association: '_Text'
  key  substring( domvalue_l, 1, 2 ) as CriticalityCode,
      @UI.hidden: true
      _Text
}
where
      domname  = 'EVE_CRITICALITY'
  and as4local = 'A'