I_MDChgProcessMatchGroupRecord
MD Consolidation Match Group Record
I_MDChgProcessMatchGroupRecord is a Composite CDS View that provides data about "MD Consolidation Match Group Record" in SAP S/4HANA. It reads from 9 data sources and exposes 21 fields with key fields MasterDataChangeProcess, MDChgProcessMatchGroupID, MDChgProcessSrceSystem, MDChgProcessSrceObject, MDChgProcessSrceObjectTypeCode.
Data Sources (9)
| Source | Alias | Join Type |
|---|---|---|
| I_MDChgProcessMatchGroup | BestRecord | inner |
| I_MDChgProcIntmdMatchGrp | BestRecord | inner |
| P_MDChgProcLastCmpltdMtchgStp | LastMTCStep | inner |
| P_MDChgProcLastCmpltdMtchgStp | LastMTCStep | inner |
| I_MDChgProcessMatchGroup | MatchGroup | from |
| I_MDChgProcIntmdMatchGrp | MatchGroup | union |
| I_MDChgProcessStep | MatchingStep | inner |
| I_MasterDataChangeProcess | Process | inner |
| I_MDChgProcessStep | Step | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMTCGRPREC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | MD Consolidation Match Group Record | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (21)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataChangeProcess | I_MDChgProcIntmdMatchGrp | MasterDataChangeProcess | Process ID |
| KEY | MDChgProcessMatchGroupID | I_MDChgProcIntmdMatchGrp | MDChgProcessMatchGroupID | Match Group |
| KEY | MDChgProcessSrceSystem | I_MDChgProcIntmdMatchGrp | MDChgProcessSrceSystem | Source System |
| KEY | MDChgProcessSrceObject | I_MDChgProcIntmdMatchGrp | MDChgProcessSrceObject | Source ID |
| KEY | MDChgProcessSrceObjectTypeCode | I_MDChgProcessStep | MDChgProcessSrceObjectTypeCode | Bus. Obj. Type |
| MDChgProcMatchGrpIsBestRecord | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGrpIsBestRecord | Truth Value | |
| MDChgProcMatchGrpApprvlStatus | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGrpApprvlStatus | Status | |
| MDChgProcMatchGroupApprover | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGroupApprover | PPA Req Approver | |
| MDChgProcMatchGrpApprvlDteTime | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGrpApprvlDteTime | Step Completed At | |
| MDChgProcMatchGroupOriginalID | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGroupOriginalID | Match Group | |
| MasterDataChangeProcess | Process ID | |||
| KEY | MDChgProcessMatchGroupID | I_MDChgProcIntmdMatchGrp | MDChgProcessMatchGroupID | Match Group |
| KEY | MDChgProcessSrceSystem | I_MDChgProcIntmdMatchGrp | MDChgProcessSrceSystem | Source System |
| KEY | MDChgProcessSrceObject | I_MDChgProcIntmdMatchGrp | MDChgProcessSrceObject | Source ID |
| KEY | MDChgProcessSrceObjectTypeCode | I_MDChgProcIntmdMatchGrp | MDChgProcessSrceObjectTypeCode | Bus. Obj. Type |
| MDChgProcMatchGrpIsBestRecord | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGrpIsBestRecord | Truth Value | |
| MDChgProcMatchGrpApprvlStatus | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGrpApprvlStatus | Status | |
| MDChgProcMatchGroupApprover | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGroupApprover | PPA Req Approver | |
| MDChgProcMatchGrpApprvlDteTime | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGrpApprvlDteTime | Step Completed At | |
| MDChgProcMatchGroupOriginalID | I_MDChgProcIntmdMatchGrp | MDChgProcMatchGroupOriginalID | Match Group | |
| MDChangeProcessIsActiveRecord |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view I_MDChgProcessMatchGroupRecord.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IMTCGRPREC
CREATE VIEW I_MDChgProcessMatchGroupRecord AS
SELECT
MatchGroup.MasterDataChangeProcess AS MasterDataChangeProcess,
MatchGroup.MDChgProcessMatchGroupID AS MDChgProcessMatchGroupID,
MatchGroup.MDChgProcessSrceSystem AS MDChgProcessSrceSystem,
MatchGroup.MDChgProcessSrceObject AS MDChgProcessSrceObject,
Step.MDChgProcessSrceObjectTypeCode AS MDChgProcessSrceObjectTypeCode,
MatchGroup.MDChgProcMatchGrpIsBestRecord AS MDChgProcMatchGrpIsBestRecord,
MatchGroup.MDChgProcMatchGrpApprvlStatus AS MDChgProcMatchGrpApprvlStatus,
MatchGroup.MDChgProcMatchGroupApprover AS MDChgProcMatchGroupApprover,
MatchGroup.MDChgProcMatchGrpApprvlDteTime AS MDChgProcMatchGrpApprvlDteTime,
MatchGroup.MDChgProcMatchGroupOriginalID AS MDChgProcMatchGroupOriginalID,
cast( case when OwnSystem.MDChgProcessSrceSystem is not null then 'X' else ' ' end as boole_d ) AS MDChangeProcessIsActiveRecord
FROM I_MDChgProcessMatchGroup AS MatchGroup
INNER JOIN P_MDChgProcLastCmpltdMtchgStp AS LastMTCStep ON /* join condition not captured in parsed metadata */
INNER JOIN I_MDChgProcessStep AS Step ON /* join condition not captured in parsed metadata */
INNER JOIN I_MDChgProcessMatchGroup AS BestRecord ON /* join condition not captured in parsed metadata */
INNER JOIN I_MasterDataChangeProcess AS Process ON /* join condition not captured in parsed metadata */
INNER JOIN I_MDChgProcessStep AS MatchingStep ON /* join condition not captured in parsed metadata */
INNER JOIN I_MDChgProcIntmdMatchGrp AS BestRecord ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): I_MDChgProcIntmdMatchGrp
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA