I_RecipeProcessElementAssgmt

DDL: I_RECIPEPROCESSELEMENTASSGMT SQL: IRPRASSIGN Type: view BASIC

Recipe Process Element Assignment

I_RecipeProcessElementAssgmt is a Basic CDS View that provides data about "Recipe Process Element Assignment" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_assign) and exposes 6 fields with key fields RecipeUUID, RcpFmlaItemSourceFmlaItemUUID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/plmb/rcp_assign /plmb/rcp_assign from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Recipe _Recipe $projection.RecipeUUID = _Recipe.RecipeUUID
[1..1] I_RecipeFormulaItem _RecipeFormulaItem $projection.RcpFmlaItemSourceFmlaItemUUID = _RecipeFormulaItem.RcpFmlaItemSourceFmlaItemUUID and $projection.RecipeUUID = _RecipeFormulaItem.RecipeUUID
[1..1] I_RecipeProcessElement _RecipeProcessElement $projection.RecipeProcessElementUUID = _RecipeProcessElement.RecipeProcessElementUUID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IRPRASSIGN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Recipe Process Element Assignment view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY RecipeUUID rcp_guid Recipe GUID
KEY RcpFmlaItemSourceFmlaItemUUID item_guid Push ItemGU
RecipeProcessElementUUID pe_guid Element GUID
_Recipe _Recipe
_RecipeFormulaItem _RecipeFormulaItem
_RecipeProcessElement _RecipeProcessElement

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_RecipeProcessElementAssgmt.
-- 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: IRPRASSIGN

CREATE VIEW I_RecipeProcessElementAssgmt AS
SELECT
  rcp_guid AS RecipeUUID,
  item_guid AS RcpFmlaItemSourceFmlaItemUUID,
  pe_guid AS RecipeProcessElementUUID
FROM /plmb/rcp_assign
LEFT OUTER JOIN I_Recipe AS _Recipe ON RecipeUUID = _Recipe.RecipeUUID  -- association [1..1]
LEFT OUTER JOIN I_RecipeFormulaItem AS _RecipeFormulaItem ON RcpFmlaItemSourceFmlaItemUUID = _RecipeFormulaItem.RcpFmlaItemSourceFmlaItemUUID AND RecipeUUID = _RecipeFormulaItem.RecipeUUID  -- association [1..1]
LEFT OUTER JOIN I_RecipeProcessElement AS _RecipeProcessElement ON RecipeProcessElementUUID = _RecipeProcessElement.RecipeProcessElementUUID  -- association [1..1]
;