I_RecipeCategoryText

DDL: I_RECIPECATEGORYTEXT SQL: IRECIPECATEGORYT Type: view BASIC

Recipe Category Text

I_RecipeCategoryText is a Basic CDS View that provides data about "Recipe Category Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields RecipeCategory, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_RecipeCategory _RecipeCategory $projection.RecipeCategory = _RecipeCategory.RecipeCategory
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IRECIPECATEGORYT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RecipeCategory view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Recipe Category Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipeCategory
KEY Language dd07t ddlanguage Lang.
RecipeCategoryDescription dd07t ddtext Short text
_RecipeCategory _RecipeCategory
_Language _Language

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_RecipeCategoryText.
-- 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: IRECIPECATEGORYT

CREATE VIEW I_RecipeCategoryText AS
SELECT
  cast( dd07t.domvalue_l as /plmb/rcp_category_id ) AS RecipeCategory,
  dd07t.ddlanguage AS Language,
  dd07t.ddtext AS RecipeCategoryDescription
FROM dd07t
LEFT OUTER JOIN I_RecipeCategory AS _RecipeCategory ON RecipeCategory = _RecipeCategory.RecipeCategory  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;