I_ProductSeasonsUnion

DDL: I_PRODUCTSEASONSUNION SQL: ISEASONSUNION Type: view BASIC

Product Seasons Union

I_ProductSeasonsUnion is a Basic CDS View that provides data about "Product Seasons Union" in SAP S/4HANA. It reads from 4 data sources (fsh_seasons_mat, fsh_seasons_mat, I_ProductSeasonsAll, fsh_seasons_mat) and exposes 22 fields.

Data Sources (4)

SourceAliasJoin Type
fsh_seasons_mat fsh_seasons_mat from
fsh_seasons_mat fsh_seasons_mat union
I_ProductSeasonsAll I_ProductSeasonsAll left_outer
fsh_seasons_mat sga inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ISEASONSUNION view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Product Seasons Union view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (22)

KeyFieldSource TableSource FieldDescription
Product sv matnr Vehicle Model
CrossPlantConfigurableProduct sv satnr Cross-plant CM
ProductCollection fsh_seasons_mat fsh_collection Collection
ProductSeason fsh_seasons_mat fsh_season Season
ProductSeasonYear fsh_seasons_mat fsh_season_year Season Year
RequirementSegment fsh_seasons_mat fsh_sgt Req. Segment
ProductTheme fsh_seasons_mat fsh_theme Theme
IsProductSeasonType1 fsh_seasons_mat season1 Season Type 1
IsProductSeasonType2 fsh_seasons_mat season2 Season Type 2
IsProductSeasonType3 fsh_seasons_mat season3 Season Type 3
ProductSeasonName fsh_seasons_mat destext Description
CrossPlantConfigurableProduct satnr Cross-plant CM
ProductCollection fsh_collection Collection
ProductSeason fsh_season Season
ProductSeasonYear fsh_season_year Season Year
RequirementSegment fsh_sgt Req. Segment
ProductTheme fsh_theme Theme
IsProductSeasonType1 season1 Season Type 1
IsProductSeasonType2 season2 Season Type 2
IsProductSeasonType3 season3 Season Type 3
ProductSeasonName destext Description
IsValid

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_ProductSeasonsUnion.
-- 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: ISEASONSUNION

CREATE VIEW I_ProductSeasonsUnion AS
SELECT
  sv.matnr AS Product,
  sv.satnr AS CrossPlantConfigurableProduct,
  sga.fsh_collection AS ProductCollection,
  sga.fsh_season AS ProductSeason,
  sga.fsh_season_year AS ProductSeasonYear,
  sga.fsh_sgt AS RequirementSegment,
  sga.fsh_theme AS ProductTheme,
  sga.season1 AS IsProductSeasonType1,
  sga.season2 AS IsProductSeasonType2,
  sga.season3 AS IsProductSeasonType3,
  sga.destext AS ProductSeasonName,
  'X' AS IsValid
FROM fsh_seasons_mat
INNER JOIN fsh_seasons_mat AS sga ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ProductSeasonsAll ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): fsh_seasons_mat
;