E_Recipe

DDL: E_RECIPE SQL: ERECIPE Type: view EXTENSION

Recipe Extension

E_Recipe is a Extension CDS View that provides data about "Recipe Extension" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_recipe) and exposes 1 field with key field RecipeUUID.

Data Sources (1)

SourceAliasJoin Type
/plmb/rcp_recipe Persistence from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ERECIPE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Recipe Extension view
VDM.viewType #EXTENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY RecipeUUID /plmb/rcp_recipe rcp_guid Recipe GUID

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 E_Recipe.
-- 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: ERECIPE

CREATE VIEW E_Recipe AS
SELECT
  Persistence.rcp_guid AS RecipeUUID
FROM /plmb/rcp_recipe AS Persistence
;