I_BusPartRelshpSourceProcess

DDL: I_BUSPARTRELSHPSOURCEPROCESS SQL: IBPRELSRCPRC Type: view TRANSACTIONAL Package: MDC_BP_REL_GOV_BO

Core BP Relationship Source In Process Status

I_BusPartRelshpSourceProcess is a Transactional CDS View that provides data about "Core BP Relationship Source In Process Status" in SAP S/4HANA. It reads from 1 data source (I_MDChangeProcessSource) and exposes 3 fields with key fields MDChgProcessSrceSystem, MDChgProcessSrceFilter. Part of development package MDC_BP_REL_GOV_BO.

Data Sources (1)

SourceAliasJoin Type
I_MDChangeProcessSource I_MDChangeProcessSource from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBPRELSRCPRC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Core BP Relationship Source In Process Status view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessSrceSystem MDChgProcessSrceSystem
KEY MDChgProcessSrceFilter MDChgProcessSrceFilter
MDChgProcNmbrOfSrceInProcess
@AbapCatalog.sqlViewName: 'IBPRELSRCPRC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Core BP Relationship Source In Process Status'
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XL
@VDM.viewType: #TRANSACTIONAL
@VDM.usage.type: [ #TRANSACTIONAL_PROCESSING_SERVICE ]
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_BusPartRelshpSourceProcess
  as select from I_MDChangeProcessSource
{
  key MDChgProcessSrceSystem,
  key MDChgProcessSrceFilter,
      sum( MDChgProcessNmbrOfSrceRecords ) as MDChgProcNmbrOfSrceInProcess
}
where
      MDChgProcessSrceObjectTypeCode                =  '1405'
  and MDChgProcessSrceFilter                        is not initial
  and _MasterDataChangeProcess.MDChgProcessStatus   <> 'F'
  and _MasterDataChangeProcess.MDChgProcessIsErased =  ' '
group by
  MDChgProcessSrceSystem,
  MDChgProcessSrceFilter