I_ProdnVersConstcyLogCount

DDL: I_PRODNVERSCONSTCYLOGCOUNT Type: view_entity COMPOSITE

Production Version Consistency Log Count

I_ProdnVersConstcyLogCount is a Composite CDS View that provides data about "Production Version Consistency Log Count" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_ProductionVersionConstcyLog _ConstcyLog $projection.Material = _ConstcyLog.Material and $projection.Plant = _ConstcyLog.Plant and $projection.ProductionVersion = _ConstcyLog.ProductionVersion

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Production Version Consistency Log Count view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material Material
KEY Plant Plant
KEY ProductionVersion ProductionVersion
KEY ProdnVersConstcyIssSvrtyLvl ProdnVersConstcyIssSvrtyLvl
NumberOfProdnVersConstcyIssue
_ConstcyLog _ConstcyLog
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Production Version Consistency Log Count'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #B,
  sizeCategory: #S,
  dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
define view entity I_ProdnVersConstcyLogCount
  as select distinct from I_ProductionVersionConstcyLog

  association [1..*] to I_ProductionVersionConstcyLog as _ConstcyLog on  $projection.Material          = _ConstcyLog.Material
                                                                     and $projection.Plant             = _ConstcyLog.Plant
                                                                     and $projection.ProductionVersion = _ConstcyLog.ProductionVersion
{
  key Material,
  key Plant,
  key ProductionVersion,
  key ProdnVersConstcyIssSvrtyLvl,
      count(*) as NumberOfProdnVersConstcyIssue,

      /*Association*/
      _ConstcyLog
}
group by
  Material,
  Plant,
  ProductionVersion,
  ProdnVersConstcyIssSvrtyLvl