R_ProdnVersConstcyLogTP

DDL: R_PRODNVERSCONSTCYLOGTP Type: view_entity TRANSACTIONAL

Production Version Consistency Log

R_ProdnVersConstcyLogTP is a Transactional CDS View that provides data about "Production Version Consistency Log" in SAP S/4HANA. It reads from 1 data source (I_ProductionVersionConstcyLog) and exposes 22 fields with key fields Material, Plant, ProductionVersion, ProdnVersConstcyIssue.

Data Sources (1)

SourceAliasJoin Type
I_ProductionVersionConstcyLog I_ProductionVersionConstcyLog from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Production Version Consistency Log view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY Material Material
KEY Plant Plant
KEY ProductionVersion ProductionVersion
KEY ProdnVersConstcyIssue ProdnVersConstcyIssue
ProdnVersConsistencyIssueType ProdnVersConsistencyIssueType
ProdnVersConstcyIssSvrtyLvl ProdnVersConstcyIssSvrtyLvl
IssueOccurredDateTime IssueOccurredDateTime
ProductionVersionConstcyStatus ProductionVersionConstcyStatus
ProducerEventType ProducerEventType
ProducerBusinessObjectType ProducerBusinessObjectType
ProdnVersConstcyLogMsgClass ProdnVersConstcyLogMsgClass
ProdnVersConstcyLogMsgNumber ProdnVersConstcyLogMsgNumber
ProdnVersConstcyLgMsgVarbl1Txt ProdnVersConstcyLgMsgVarbl1Txt
ProdnVersConstcyLgMsgVarbl2Txt ProdnVersConstcyLgMsgVarbl2Txt
ProdnVersConstcyLgMsgVarbl3Txt ProdnVersConstcyLgMsgVarbl3Txt
ProdnVersConstcyLgMsgVarbl4Txt ProdnVersConstcyLgMsgVarbl4Txt
ChangeHistoryCount _Header ChangeHistoryCount
_Material _Material
_Plant _Plant
_ProdnVers _ProdnVers
_Header _Header
_IssueType _IssueType
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Production Version Consistency Log'
@VDM: { viewType: #TRANSACTIONAL, lifecycle.contract.type: #SAP_INTERNAL_API }
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #S,
  dataClass: #TRANSACTIONAL
}
define view entity R_ProdnVersConstcyLogTP
  as select from I_ProductionVersionConstcyLog

  -- to Production Version Header
  association to parent R_ProductionVersionTP as _Header on  $projection.Material          = _Header.Material
                                                         and $projection.Plant             = _Header.Plant
                                                         and $projection.ProductionVersion = _Header.ProductionVersion
{
  key Material,
  key Plant,
  key ProductionVersion,
  key ProdnVersConstcyIssue,
      ProdnVersConsistencyIssueType,
      ProdnVersConstcyIssSvrtyLvl,
      IssueOccurredDateTime,
      ProductionVersionConstcyStatus,
      ProducerEventType,
      ProducerBusinessObjectType,
      ProdnVersConstcyLogMsgClass,
      ProdnVersConstcyLogMsgNumber,
      ProdnVersConstcyLgMsgVarbl1Txt,
      ProdnVersConstcyLgMsgVarbl2Txt,
      ProdnVersConstcyLgMsgVarbl3Txt,
      ProdnVersConstcyLgMsgVarbl4Txt,

      _Header.ChangeHistoryCount as ChangeHistoryCount,


      /* Associations */
      _Material,
      _Plant,
      _ProdnVers,
      _Header,
      _IssueType
}