I_MDChangeProcessVsbltyTrcLog
MDC Process Visualization Event Tracker
I_MDChangeProcessVsbltyTrcLog is a CDS View that provides data about "MDC Process Visualization Event Tracker" in SAP S/4HANA. It reads from 2 data sources (mdc_d_prcroot, mdc_pv_trace_log) and exposes 15 fields with key fields source_otc, process_id, event_name, pv_event, step_number. Part of development package MDC_PROCESS_OBJECT.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| mdc_d_prcroot | _Process | left_outer |
| mdc_pv_trace_log | _Trace | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | MDC_PVTRACELOG_V | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | MDC Process Visualization Event Tracker | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | source_otc | mdc_d_prcroot | source_otc | |
| KEY | process_id | mdc_pv_trace_log | process_id | |
| KEY | event_name | mdc_pv_trace_log | event_name | |
| KEY | pv_event | mdc_pv_trace_log | pv_event | |
| KEY | step_number | mdc_pv_trace_log | step_number | |
| step_type | mdc_pv_trace_log | step_type | ||
| callstack | mdc_pv_trace_log | callstack | ||
| process | mdc_pv_trace_log | process | ||
| process_step | mdc_pv_trace_log | process_step | ||
| pv_instance | mdc_pv_trace_log | pv_instance | ||
| pv_common | mdc_pv_trace_log | pv_common | ||
| pv_process | mdc_pv_trace_log | pv_process | ||
| pv_step | mdc_pv_trace_log | pv_step | ||
| pv_text | mdc_pv_trace_log | pv_text | ||
| error_text | mdc_pv_trace_log | error_text |
@AbapCatalog.sqlViewName: 'MDC_PVTRACELOG_V'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'MDC Process Visualization Event Tracker'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view I_MDChangeProcessVsbltyTrcLog
as select from mdc_pv_trace_log as _Trace
left outer join mdc_d_prcroot as _Process on _Trace.process_id = _Process.id
{
key _Process.source_otc as source_otc,
key _Trace.process_id,
key _Trace.event_datetime,
key _Trace.event_name,
key _Trace.pv_event,
key _Trace.step_number,
_Trace.step_type,
_Trace.callstack,
_Trace.process,
_Trace.process_step,
_Trace.process_context,
_Trace.pv_instance,
_Trace.pv_common,
_Trace.pv_process,
_Trace.pv_step,
_Trace.pv_text,
_Trace.utc_timestamp,
_Trace.error_text
}
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