I_MDChgProcessActivatedProcess
Activated processes
I_MDChgProcessActivatedProcess is a Basic CDS View that provides data about "Activated processes" in SAP S/4HANA. It reads from 2 data sources (mdc_act_acts, I_MasterDataChangeProcess) and exposes 35 fields with key fields MDChgProcessSrceObjectTypeCode, MasterDataChangeProcess.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| mdc_act_acts | _act | inner |
| I_MasterDataChangeProcess | _process | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Activated processes | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (35)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessSrceObjectTypeCode | mdc_act_acts | bo_type | |
| KEY | MasterDataChangeProcess | mdc_act_acts | process_id | |
| MasterDataChangeProcessUUID | I_MasterDataChangeProcess | MasterDataChangeProcessUUID | ||
| MDChgProcessDescription | I_MasterDataChangeProcess | MDChgProcessDescription | ||
| MDChgProcessTypeID | I_MasterDataChangeProcess | MDChgProcessTypeID | ||
| MDChgProcessGoal | I_MasterDataChangeProcess | MDChgProcessGoal | ||
| MDChgProcessStatus | I_MasterDataChangeProcess | MDChgProcessStatus | ||
| MDChgProcessWorkflowTemplate | I_MasterDataChangeProcess | MDChgProcessWorkflowTemplate | ||
| MDChgProcessRequestor | I_MasterDataChangeProcess | MDChgProcessRequestor | ||
| MDChgProcessDelSrceDataIsRqd | I_MasterDataChangeProcess | MDChgProcessDelSrceDataIsRqd | ||
| MDChgProcessCreationDate | I_MasterDataChangeProcess | MDChgProcessCreationDate | ||
| MDChgProcessCreationTime | I_MasterDataChangeProcess | MDChgProcessCreationTime | ||
| MDChgProcessChangeDate | I_MasterDataChangeProcess | MDChgProcessChangeDate | ||
| MDChgProcessChangeTime | I_MasterDataChangeProcess | MDChgProcessChangeTime | ||
| MDChgProcessFinishDate | I_MasterDataChangeProcess | MDChgProcessFinishDate | ||
| MDChgProcessFinishTime | I_MasterDataChangeProcess | MDChgProcessFinishTime | ||
| MDChgProcessUpdateToken | I_MasterDataChangeProcess | MDChgProcessUpdateToken | ||
| MDChgProcessIsStarted | I_MasterDataChangeProcess | MDChgProcessIsStarted | ||
| MDChgProcessIsInitialized | I_MasterDataChangeProcess | MDChgProcessIsInitialized | ||
| MDChgProcessIsFinalized | I_MasterDataChangeProcess | MDChgProcessIsFinalized | ||
| MDChgProcessLastStepIsFinished | I_MasterDataChangeProcess | MDChgProcessLastStepIsFinished | ||
| MDChgProcessCurrentStepNumber | I_MasterDataChangeProcess | MDChgProcessCurrentStepNumber | ||
| MDChgProcessChkPointIsActive | I_MasterDataChangeProcess | MDChgProcessChkPointIsActive | ||
| MDChgProcessCompletionIsReqd | I_MasterDataChangeProcess | MDChgProcessCompletionIsReqd | ||
| MDChgProcessWrkFlwDeltnIsRqd | I_MasterDataChangeProcess | MDChgProcessWrkFlwDeltnIsRqd | ||
| MDChgProcessSrceDeletionIsRqd | I_MasterDataChangeProcess | MDChgProcessSrceDeletionIsRqd | ||
| MDChgProcessFilterChain | I_MasterDataChangeProcess | MDChgProcessFilterChain | ||
| MDChgProcessErrorsAreLogged | I_MasterDataChangeProcess | MDChgProcessErrorsAreLogged | ||
| MDChgProcessLastActKey | I_MasterDataChangeProcess | MDChgProcessLastActKey | ||
| MDChgProcessPredecessor | I_MasterDataChangeProcess | MDChgProcessPredecessor | ||
| MDChgProcessFinalDateTime | I_MasterDataChangeProcess | MDChgProcessFinalDateTime | ||
| MDChgProcessNextStpAtDateTime | I_MasterDataChangeProcess | MDChgProcessNextStpAtDateTime | ||
| MDChgProcessDuplicateStrategy | I_MasterDataChangeProcess | MDChgProcessDuplicateStrategy | ||
| MDChgProcessIsReliable | I_MasterDataChangeProcess | MDChgProcessIsReliable | ||
| MDChgProcessIsErased | I_MasterDataChangeProcess | MDChgProcessIsErased |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@EndUserText.label: 'Activated processes'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XL,
dataClass: #MIXED
}
define view entity I_MDChgProcessActivatedProcess
as select from I_MasterDataChangeProcess as _process
inner join mdc_act_acts as _act on _process.MasterDataChangeProcess = _act.process_id
{
key _act.bo_type as MDChgProcessSrceObjectTypeCode,
key _act.process_id as MasterDataChangeProcess,
_process.MasterDataChangeProcessUUID,
_process.MDChgProcessDescription,
_process.MDChgProcessTypeID,
_process.MDChgProcessGoal,
_process.MDChgProcessStatus,
_process.MDChgProcessWorkflowTemplate,
_process.MDChgProcessRequestor,
@Semantics.booleanIndicator: true
_process.MDChgProcessDelSrceDataIsRqd,
_process.MDChgProcessCreationDate,
_process.MDChgProcessCreationTime,
_process.MDChgProcessChangeDate,
_process.MDChgProcessChangeTime,
_process.MDChgProcessFinishDate,
_process.MDChgProcessFinishTime,
_process.MDChgProcessUpdateToken,
_process.MDChgProcessIsStarted,
_process.MDChgProcessIsInitialized,
_process.MDChgProcessIsFinalized,
_process.MDChgProcessLastStepIsFinished,
_process.MDChgProcessCurrentStepNumber,
_process.MDChgProcessChkPointIsActive,
_process.MDChgProcessCompletionIsReqd,
_process.MDChgProcessWrkFlwDeltnIsRqd,
_process.MDChgProcessSrceDeletionIsRqd,
_process.MDChgProcessFilterChain,
_process.MDChgProcessErrorsAreLogged,
_process.MDChgProcessLastActKey,
_process.MDChgProcessPredecessor,
_process.MDChgProcessFinalDateTime,
_process.MDChgProcessNextStpAtDateTime,
_process.MDChgProcessDuplicateStrategy,
_process.MDChgProcessIsReliable,
_process.MDChgProcessIsErased
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MASTERDATACHANGEPROCESS",
"MDC_ACT_ACTS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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