I_BPRelshpChangeProcessGov

DDL: I_BPRELSHPCHANGEPROCESSGOV Type: view_entity TRANSACTIONAL Package: MDC_BP_REL_GOV_BO

Business Partner Relationship Change Process Governance

I_BPRelshpChangeProcessGov is a Transactional CDS View that provides data about "Business Partner Relationship Change Process Governance" in SAP S/4HANA. It reads from 2 data sources (I_BusPartRelationshipGov, I_MasterDataChangeProcess) and exposes 17 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, BPRelshpCatIsInFwdDirection. Part of development package MDC_BP_REL_GOV_BO.

Data Sources (2)

SourceAliasJoin Type
I_BusPartRelationshipGov BPRelationship inner
I_MasterDataChangeProcess Process from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Partner Relationship Change Process Governance view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess I_BusPartRelationshipGov MasterDataChangeProcess
KEY MDChgProcessStep I_BusPartRelationshipGov MDChgProcessStep
KEY MDChgProcessSrceSystem I_BusPartRelationshipGov MDChgProcessSrceSystem
KEY MDChgProcessSrceObject I_BusPartRelationshipGov MDChgProcessSrceObject
KEY BPRelshpCatIsInFwdDirection I_BusPartRelationshipGov BPRelshpCatIsInFwdDirection
MasterDataChangeProcessUUID I_MasterDataChangeProcess MasterDataChangeProcessUUID
MDChgProcessDescription I_MasterDataChangeProcess MDChgProcessDescription
MDChgProcessTypeID I_MasterDataChangeProcess MDChgProcessTypeID
MDChgProcessGoal I_MasterDataChangeProcess MDChgProcessGoal
MDChgProcessStatus I_MasterDataChangeProcess MDChgProcessStatus
MDChgProcessSrceObjectTypeCode I_MasterDataChangeProcess MDChgProcessSrceObjectTypeCode
MDChgProcessRequestor I_MasterDataChangeProcess MDChgProcessRequestor
MDChgProcessIsStarted I_MasterDataChangeProcess MDChgProcessIsStarted
MDChgProcessIsFinalized I_MasterDataChangeProcess MDChgProcessIsFinalized
MDChgProcessLastStepIsFinished I_MasterDataChangeProcess MDChgProcessLastStepIsFinished
MDChgProcessCurrentStepNumber I_MasterDataChangeProcess MDChgProcessCurrentStepNumber
MDChgProcessIsErased I_MasterDataChangeProcess MDChgProcessIsErased
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Business Partner Relationship Change Process Governance'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #TRANSACTIONAL
define view entity I_BPRelshpChangeProcessGov
  as select from I_MasterDataChangeProcess as Process
    inner join   I_BusPartRelationshipGov  as BPRelationship on BPRelationship.MasterDataChangeProcess = Process.MasterDataChangeProcess
{
  key BPRelationship.MasterDataChangeProcess,
  key BPRelationship.MDChgProcessStep,
  key BPRelationship.MDChgProcessSrceSystem,
  key BPRelationship.MDChgProcessSrceObject,
  key BPRelationship.BPRelshpCatIsInFwdDirection,
      Process.MasterDataChangeProcessUUID,
      Process.MDChgProcessDescription,
      Process.MDChgProcessTypeID,
      Process.MDChgProcessGoal,
      Process.MDChgProcessStatus,
      Process.MDChgProcessSrceObjectTypeCode,
      Process.MDChgProcessRequestor,
      Process.MDChgProcessIsStarted,
      Process.MDChgProcessIsFinalized,
      Process.MDChgProcessLastStepIsFinished,
      Process.MDChgProcessCurrentStepNumber,
      Process.MDChgProcessIsErased
}
where
  BPRelationship.MasterDataIsCurrent = 'X'