I_BusPartRelshpSourceProcess
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)
| Source | Alias | Join Type |
|---|---|---|
| I_MDChangeProcessSource | I_MDChangeProcessSource | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA