I_ProductSeasonsTP

DDL: I_PRODUCTSEASONSTP SQL: IPRODSEASONSTP Type: view TRANSACTIONAL

Product BO Seasons (Draft)

I_ProductSeasonsTP is a Transactional CDS View that provides data about "Product BO Seasons (Draft)" in SAP S/4HANA. It reads from 1 data source (I_ProductSeasons) and exposes 19 fields with key fields Product, ProductCollection, ProductSeason, ProductSeasonYear, RequirementSegment. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductSeasons I_ProductSeasons from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ProductWD _Product $projection.Product = _Product.Product

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPRODSEASONSTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product BO Seasons (Draft) view
VDM.viewType #TRANSACTIONAL view
ObjectModel.writeDraftPersistence PROD_SEASONS view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY ProductCollection ProductCollection Collection
KEY ProductSeason ProductSeason Season
KEY ProductSeasonYear ProductSeasonYear Season Year
KEY RequirementSegment RequirementSegment Req. Segment
KEY ProductTheme ProductTheme Theme
ProductCollectionForEdit ProductCollection Collection
ProductSeasonForEdit ProductSeason Season
ProductSeasonYearForEdit ProductSeasonYear Season Year
ProductThemeForEdit ProductTheme Theme
ProductCollectionForCreate ProductCollection Collection
ProductSeasonForCreate ProductSeason Season
ProductThemeForCreate ProductTheme Theme
CrossPlantConfigurableProduct CrossPlantConfigurableProduct Cross-plant CP
IsProductSeasonType1 IsProductSeasonType1
IsProductSeasonType2 IsProductSeasonType2
IsProductSeasonType3 IsProductSeasonType3
ProductSeasonName ProductSeasonName
_Product _Product

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_ProductSeasonsTP.
-- 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: IPRODSEASONSTP

CREATE VIEW I_ProductSeasonsTP AS
SELECT
  Product,
  ProductCollection,
  ProductSeason,
  ProductSeasonYear,
  RequirementSegment,
  ProductTheme,
  ProductCollection AS ProductCollectionForEdit,
  ProductSeason AS ProductSeasonForEdit,
  ProductSeasonYear AS ProductSeasonYearForEdit,
  ProductTheme AS ProductThemeForEdit,
  ProductCollection AS ProductCollectionForCreate,
  ProductSeason AS ProductSeasonForCreate,
  ProductTheme AS ProductThemeForCreate,
  CrossPlantConfigurableProduct,
  IsProductSeasonType1,
  IsProductSeasonType2,
  IsProductSeasonType3,
  ProductSeasonName
FROM I_ProductSeasons
LEFT OUTER JOIN I_ProductWD AS _Product ON Product = _Product.Product  -- association [1..1]
;