I_ProductThemeT

DDL: I_PRODUCTTHEMET SQL: IPRODUCTTHEMET Type: view BASIC

Product Theme Text

I_ProductThemeT is a Basic CDS View that provides data about "Product Theme Text" in SAP S/4HANA. It reads from 1 data source (I_SeasonBasic) and exposes 8 fields with key fields ProductSeason, ProductSeasonYear, ProductCollection, ProductTheme, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_SeasonBasic I_SeasonBasic from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ProductTheme _ProductTheme $projection.ProductSeason = _ProductTheme.ProductSeason and $projection.ProductSeasonYear = _ProductTheme.ProductSeasonYear and $projection.ProductCollection = _ProductTheme.ProductCollection and $projection.ProductTheme = _ProductTheme.ProductTheme
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPRODUCTTHEMET view
EndUserText.label Product Theme Text view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProductTheme view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ProductSeason ProductSeason Season
KEY ProductSeasonYear ProductSeasonYear Season Year
KEY ProductCollection ProductCollection Collection
KEY ProductTheme ProductTheme Theme
KEY Language _SeasonText Language Report Text Language
ProductThemeName _SeasonText ProductSeasonText
_ProductTheme _ProductTheme
_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_ProductThemeT.
-- 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: IPRODUCTTHEMET

CREATE VIEW I_ProductThemeT AS
SELECT
  ProductSeason,
  ProductSeasonYear,
  ProductCollection,
  ProductTheme,
  _SeasonText.Language AS Language,
  _SeasonText.ProductSeasonText AS ProductThemeName
FROM I_SeasonBasic
LEFT OUTER JOIN I_ProductTheme AS _ProductTheme ON ProductSeason = _ProductTheme.ProductSeason AND ProductSeasonYear = _ProductTheme.ProductSeasonYear AND ProductCollection = _ProductTheme.ProductCollection AND ProductTheme = _ProductTheme.ProductTheme  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;