C_MDChangeProcessSource

DDL: C_MDCHANGEPROCESSSOURCE SQL: CMDCHGPROCSOURCE Type: view CONSUMPTION

Source Data Information

C_MDChangeProcessSource is a Consumption CDS View that provides data about "Source Data Information" in SAP S/4HANA. It reads from 1 data source (I_MDChangeProcessSourceTP) and exposes 12 fields with key field MDChgProcessSourceUUID. It has 3 associations to related views. It is exposed through 1 OData service (MASTERDATACHANGEPROCESSSD).

Data Sources (1)

SourceAliasJoin Type
I_MDChangeProcessSourceTP I_MDChangeProcessSourceTP from

Associations (3)

CardinalityTargetAliasCondition
[1..1] C_MasterDataChangeProcess _Root _Root.MasterDataChangeProcessUUID = $projection.MasterDataChangeProcessUUID
[0..*] I_MDChgProcessSourceWorklistTP _SourceWorklist _SourceWorklist.MDChgProcessSourceUUID = $projection.MDChgProcessSourceUUID
[0..1] C_MDChgProcessSourceStatusVH _MDChgProcessSourceStatusVH _MDChgProcessSourceStatusVH.MDChgProcessSrceStatus = $projection.MDChgProcessSrceStatus

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CMDCHGPROCSOURCE view
EndUserText.label Source Data Information view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.draftEnabled false view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
MASTERDATACHANGEPROCESSSD MASTERDATACHANGEPROCESSSB V2 C1 NOT_RELEASED

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessSourceUUID MDChgProcessSourceUUID UUID
MasterDataChangeProcessUUID MasterDataChangeProcessUUID NodeID
MasterDataChangeProcess MasterDataChangeProcess Process ID
MDChgProcessSrceSystem MDChgProcessSrceSystem Source System
MDChgProcessSrceStatus MDChgProcessSrceStatus Workflow Status
MDChgProcessSourceStatusText _MDChgProcessSourceStatusVH MDChgProcessSourceStatusText
MDChgProcessSrceFilter MDChgProcessSrceFilter KPI Filter
MDChgProcessNmbrOfSrceRecords MDChgProcessNmbrOfSrceRecords Number of Records
MDChgProcessSrceObjectTypeCode MDChgProcessSrceObjectTypeCode Bus. Obj. Type
MDChgProcessSrceFilterChain MDChgProcessSrceFilterChain Filter Chain
_Root _Root
_SourceWorklist _SourceWorklist

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 C_MDChangeProcessSource.
-- 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: CMDCHGPROCSOURCE

CREATE VIEW C_MDChangeProcessSource AS
SELECT
  MDChgProcessSourceUUID,
  MasterDataChangeProcessUUID,
  MasterDataChangeProcess,
  MDChgProcessSrceSystem,
  MDChgProcessSrceStatus,
  _MDChgProcessSourceStatusVH.MDChgProcessSourceStatusText AS MDChgProcessSourceStatusText,
  MDChgProcessSrceFilter,
  MDChgProcessNmbrOfSrceRecords,
  MDChgProcessSrceObjectTypeCode,
  MDChgProcessSrceFilterChain
FROM I_MDChangeProcessSourceTP
LEFT OUTER JOIN C_MasterDataChangeProcess AS _Root ON _Root.MasterDataChangeProcessUUID = MasterDataChangeProcessUUID  -- association [1..1]
LEFT OUTER JOIN I_MDChgProcessSourceWorklistTP AS _SourceWorklist ON _SourceWorklist.MDChgProcessSourceUUID = MDChgProcessSourceUUID  -- association [0..*]
LEFT OUTER JOIN C_MDChgProcessSourceStatusVH AS _MDChgProcessSourceStatusVH ON _MDChgProcessSourceStatusVH.MDChgProcessSrceStatus = MDChgProcessSrceStatus  -- association [0..1]
;