A_ChangeRecordRefRecipe

DDL: A_CHANGERECORDREFRECIPE Type: view_entity COMPOSITE

Recipe Assignments to Change Records

A_ChangeRecordRefRecipe is a Composite CDS View that provides data about "Recipe Assignments to Change Records" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecdRefRecipeTP_2) and exposes 14 fields with key field ChangeRecordReferenceUUID.

Data Sources (1)

SourceAliasJoin Type
I_ChangeRecdRefRecipeTP_2 ChangeRecordReferenceRCPTP from

Annotations (8)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Recipe Assignments to Change Records view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordReferenceUUID ChangeRecordReferenceUUID UUID
ChangeRecord ChangeRecord Char20
ChangeRecordUUID ChangeRecordUUID NodeID
ChangeRecordReferenceType ChangeRecordReferenceType Object Type
RecipePrimaryOutput I_ChangeRecdRefRecipeTP_2 RecipePrimaryOutput
RecipeAlternativeNumber I_ChangeRecdRefRecipeTP_2 RecipeAlternativeNumber
RecipeVersionNumber I_ChangeRecdRefRecipeTP_2 RecipeVersionNumber
ChangeRecordItemRelevance ChangeRecordItemRelevance Relevance
ChangeRecordItemProcgStatus ChangeRecordItemProcgStatus Processing Status
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
_ChangeRecord _ChangeRecord

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_ChangeRecordRefRecipe.
-- 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_ChangeRecordRefRecipe AS
SELECT
  ChangeRecordReferenceUUID,
  ChangeRecord,
  ChangeRecordUUID,
  ChangeRecordReferenceType,
  ChangeRecordReferenceRCPTP.RecipePrimaryOutput AS RecipePrimaryOutput,
  ChangeRecordReferenceRCPTP.RecipeAlternativeNumber AS RecipeAlternativeNumber,
  ChangeRecordReferenceRCPTP.RecipeVersionNumber AS RecipeVersionNumber,
  ChangeRecordItemRelevance,
  ChangeRecordItemProcgStatus,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime
FROM I_ChangeRecdRefRecipeTP_2 AS ChangeRecordReferenceRCPTP
;