I_MDChangeProcessRecordTarget
MD Consolidation Record Target
I_MDChangeProcessRecordTarget is a Basic CDS View that provides data about "MD Consolidation Record Target" in SAP S/4HANA. It reads from 1 data source (mdc_recordtarget) and exposes 7 fields with key fields MasterDataChangeProcess, MDChgProcessSrceSystem, MDChgProcessSrceObject, MDChgProcessSrceObjectTypeCode. It is exposed through 2 OData services (C_MDCHGPROCBPDETAILSTP_SRV, C_MDCHGPROCBPRELDETAILSTP_SRV). It is used in 2 Fiori applications: Mass Edit BP Relationships, Mass Edit Business Partners.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mdc_recordtarget | mdc_recordtarget | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDRECTARGET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | MD Consolidation Record Target | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| C_MDCHGPROCBPDETAILSTP_SRV | C_MDCHGPROCBPDETAILSTP_SRV | V2 | C1 | NOT_RELEASED |
| C_MDCHGPROCBPRELDETAILSTP_SRV | C_MDCHGPROCBPRELDETTP_SRV | V2 | C1 | NOT_RELEASED |
Fiori Apps (2)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F6563 | Mass Edit BP Relationships | Transactional | |
| F6564 | Mass Edit Business Partners | Transactional | An application to display or edit the data of an MDG master data process. The data will be shown in a table-like UI. This Fiori app has no own tile, but can be navigated from the MDG process UI (e.g. Manage Governance Processes - Business Partner). |
Mass Edit BP Relationships
Business Role: Master Data Specialist - Business Partner Data
This app is used in SAP Master Data Governance in cloud-ready mode.You can access Mass Edit from any process handling business partner relationship data."Edit" enables you to manually change individual field values while "Mass Edit" offers to change field values in one step, either for all records or for a set of selected records. In the Mass Edit you have following options to change field value: Keep existing value Replace field value Clear field value
Mass Edit Business Partners
Business Role: Master Data Specialist - Business Partner Data
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataChangeProcess | process_id | ||
| KEY | MDChgProcessSrceSystem | source_system | ||
| KEY | MDChgProcessSrceObject | source_id | ||
| KEY | MDChgProcessSrceObjectTypeCode | bo_type | ||
| MDChgProcessActivationTarget | activation | |||
| MDChgProcChangeRequestID | change_request_id | |||
| MDChangeProcessActiveID | active_id |
@AbapCatalog.sqlViewName: 'IMDRECTARGET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'MD Consolidation Record Target'
@ObjectModel.usageType: {
serviceQuality: #B,
sizeCategory: #XXL,
dataClass: #TRANSACTIONAL
}
@VDM.viewType:#BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_MDChangeProcessRecordTarget
as select from mdc_recordtarget
{
key process_id as MasterDataChangeProcess,
key source_system as MDChgProcessSrceSystem,
key source_id as MDChgProcessSrceObject,
key bo_type as MDChgProcessSrceObjectTypeCode,
activation as MDChgProcessActivationTarget,
change_request_id as MDChgProcChangeRequestID,
active_id as MDChangeProcessActiveID
}
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