I_BPHierNodeSourceProcess
Src of BP Hierarchy Node in Prc Status
I_BPHierNodeSourceProcess is a CDS View that provides data about "Src of BP Hierarchy Node in Prc 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_HIER_GOV_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MDChangeProcessSource | I_MDChangeProcessSource | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Src of BP Hierarchy Node in Prc Status | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessSrceSystem | MDChgProcessSrceSystem | ||
| KEY | MDChgProcessSrceFilter | MDChgProcessSrceFilter | ||
| MDChgProcNmbrOfSrceInProcess |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Src of BP Hierarchy Node in Prc Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XXL,
dataClass: #TRANSACTIONAL
}
define view entity I_BPHierNodeSourceProcess
as select from I_MDChangeProcessSource
{
key MDChgProcessSrceSystem,
key MDChgProcessSrceFilter,
sum( MDChgProcessNmbrOfSrceRecords ) as MDChgProcNmbrOfSrceInProcess
}
where
MDChgProcessSrceObjectTypeCode = '5855'
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