A_MasterRecipeRelationship

DDL: A_MASTERRECIPERELATIONSHIP Type: view_entity CONSUMPTION

Phase Relationship

A_MasterRecipeRelationship is a Consumption CDS View that provides data about "Phase Relationship" in SAP S/4HANA. It reads from 1 data source (I_MasterRecipeRelationshipTP) and exposes 24 fields with key fields PrdcssrMasterRecipeGroup, PrdcssrMasterRecipe, PrdcssrMstrRcpOpInternalID, SuccssrMasterRecipeGroup, SuccssrMasterRecipe.

Data Sources (1)

SourceAliasJoin Type
I_MasterRecipeRelationshipTP I_MasterRecipeRelationshipTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Phase Relationship view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY PrdcssrMasterRecipeGroup PrdcssrMasterRecipeGroup
KEY PrdcssrMasterRecipe PrdcssrMasterRecipe
KEY PrdcssrMstrRcpOpInternalID PrdcssrMstrRcpOpInternalID
KEY SuccssrMasterRecipeGroup SuccssrMasterRecipeGroup
KEY SuccssrMasterRecipe SuccssrMasterRecipe
KEY SuccssrMstrRcpOpInternalID SuccssrMstrRcpOpInternalID
KEY MasterRecipeRelationshipType MasterRecipeRelationshipType
KEY MaxTimeIntvlIsUsedForSchedg MaxTimeIntvlIsUsedForSchedg
KEY MstrRcpRelationshipIntVersion MstrRcpRelationshipIntVersion
TimeIntvlBtwnRelshp TimeIntvlBtwnRelshp
MaxTimeIntvlBtwnRelshp MaxTimeIntvlBtwnRelshp
TimeIntvlBtwnRelshpUnit TimeIntvlBtwnRelshpUnit
FactoryCalendar FactoryCalendar Factory Calendar
WorkCenterInternalID WorkCenterInternalID Work Center
Plant Plant Valuation Area
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
ChangeNumber ChangeNumber Change Number
ChangedDateTime ChangedDateTime Time Stamp
_PrdcssrHeader _PrdcssrHeader

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 A_MasterRecipeRelationship.
-- 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 A_MasterRecipeRelationship AS
SELECT
  PrdcssrMasterRecipeGroup,
  PrdcssrMasterRecipe,
  PrdcssrMstrRcpOpInternalID,
  SuccssrMasterRecipeGroup,
  SuccssrMasterRecipe,
  SuccssrMstrRcpOpInternalID,
  MasterRecipeRelationshipType,
  MaxTimeIntvlIsUsedForSchedg,
  MstrRcpRelationshipIntVersion,
  TimeIntvlBtwnRelshp,
  MaxTimeIntvlBtwnRelshp,
  TimeIntvlBtwnRelshpUnit,
  FactoryCalendar,
  WorkCenterInternalID,
  Plant,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser,
  ValidityStartDate,
  ValidityEndDate,
  ChangeNumber,
  ChangedDateTime
FROM I_MasterRecipeRelationshipTP
;