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.

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess process_id Process Instance ID
KEY MDChgProcessSrceSystem source_system Source System
KEY MDChgProcessSrceObject source_id UUID
KEY MDChgProcessSrceObjectTypeCode bo_type SOT Name
MDChgProcessActivationTarget activation Match Groups
MDChgProcChangeRequestID change_request_id CR-ID f. rep. msg.
MDChangeProcessActiveID active_id ID

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_MDChangeProcessRecordTarget.
-- 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: IMDRECTARGET

CREATE VIEW I_MDChangeProcessRecordTarget AS
SELECT
  process_id AS MasterDataChangeProcess,
  source_system AS MDChgProcessSrceSystem,
  source_id AS MDChgProcessSrceObject,
  bo_type AS MDChgProcessSrceObjectTypeCode,
  activation AS MDChgProcessActivationTarget,
  change_request_id AS MDChgProcChangeRequestID,
  active_id AS MDChangeProcessActiveID
FROM mdc_recordtarget
;