I_MDChangeProcessRecordTarget

DDL: I_MDCHANGEPROCESSRECORDTARGET SQL: IMDRECTARGET Type: view BASIC

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)

SourceAliasJoin Type
mdc_recordtarget mdc_recordtarget from

Annotations (10)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
C_MDCHGPROCBPDETAILSTP_SRV C_MDCHGPROCBPDETAILSTP_SRV V2 C1 NOT_RELEASED
C_MDCHGPROCBPRELDETAILSTP_SRV C_MDCHGPROCBPRELDETTP_SRV V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
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
}