I_ProductGovChgProc

DDL: I_PRODUCTGOVCHGPROC Type: view_entity BASIC

I_ProductGovChgProc is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_MasterDataChangeProcess) and exposes 19 fields with key fields MasterDataChangeProcess, MDchgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject.

Data Sources (1)

SourceAliasJoin Type
I_MasterDataChangeProcess Process from

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess _Product MasterDataChangeProcess Process ID
KEY MDchgProcessStep _Product MDChgProcessStep Step Number
KEY MDChgProcessSrceSystem _Product MDChgProcessSrceSystem Source System
KEY MDChgProcessSrceObject _Product MDChgProcessSrceObject Source ID
MasterDataChangeProcessUUID I_MasterDataChangeProcess MasterDataChangeProcessUUID NodeID
MDChgProcessDescription I_MasterDataChangeProcess MDChgProcessDescription Process Description
MDChgProcessTypeID I_MasterDataChangeProcess MDChgProcessTypeID Process Template
MDChgProcessGoal I_MasterDataChangeProcess MDChgProcessGoal Process Goal
MDChgProcessStatus I_MasterDataChangeProcess MDChgProcessStatus Process Status
MDChgProcessSrceObjectTypeCode I_MasterDataChangeProcess MDChgProcessSrceObjectTypeCode Bus. Obj. Type
MDChgProcessRequestor I_MasterDataChangeProcess MDChgProcessRequestor Process Requestor
MDChgProcessIsStarted I_MasterDataChangeProcess MDChgProcessIsStarted Process Started
MDChgProcessIsFinalized I_MasterDataChangeProcess MDChgProcessIsFinalized Finalized
MDChgProcessLastStepIsFinished I_MasterDataChangeProcess MDChgProcessLastStepIsFinished Last Step Finished
MDChgProcessCurrentStepNumber I_MasterDataChangeProcess MDChgProcessCurrentStepNumber Step Number
MDChgProcessIsErased I_MasterDataChangeProcess MDChgProcessIsErased Process Erased
MasterDataChangeProcessDueDate I_MasterDataChangeProcess MasterDataChangeProcessDueDate Net Due Date
MasterDataChangeProcessReason I_MasterDataChangeProcess MasterDataChangeProcessReason Sp.Tax Code Reason
MDChangeProcessPriority I_MasterDataChangeProcess MDChangeProcessPriority Workflow priority

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_ProductGovChgProc.
-- 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.

CREATE VIEW I_ProductGovChgProc AS
SELECT
  _Product.MasterDataChangeProcess AS MasterDataChangeProcess,
  _Product.MDChgProcessStep AS MDchgProcessStep,
  _Product.MDChgProcessSrceSystem AS MDChgProcessSrceSystem,
  _Product.MDChgProcessSrceObject AS MDChgProcessSrceObject,
  Process.MasterDataChangeProcessUUID AS MasterDataChangeProcessUUID,
  Process.MDChgProcessDescription AS MDChgProcessDescription,
  Process.MDChgProcessTypeID AS MDChgProcessTypeID,
  Process.MDChgProcessGoal AS MDChgProcessGoal,
  Process.MDChgProcessStatus AS MDChgProcessStatus,
  Process.MDChgProcessSrceObjectTypeCode AS MDChgProcessSrceObjectTypeCode,
  Process.MDChgProcessRequestor AS MDChgProcessRequestor,
  Process.MDChgProcessIsStarted AS MDChgProcessIsStarted,
  Process.MDChgProcessIsFinalized AS MDChgProcessIsFinalized,
  Process.MDChgProcessLastStepIsFinished AS MDChgProcessLastStepIsFinished,
  Process.MDChgProcessCurrentStepNumber AS MDChgProcessCurrentStepNumber,
  Process.MDChgProcessIsErased AS MDChgProcessIsErased,
  Process.MasterDataChangeProcessDueDate AS MasterDataChangeProcessDueDate,
  Process.MasterDataChangeProcessReason AS MasterDataChangeProcessReason,
  Process.MDChangeProcessPriority AS MDChangeProcessPriority
FROM I_MasterDataChangeProcess AS Process
;