I_SegmentationStrategyMaterial

DDL: I_SEGMENTATIONSTRATEGYMATERIAL Type: view_entity COMPOSITE

Materials having Segmentation Strategy

I_SegmentationStrategyMaterial is a Composite CDS View that provides data about "Materials having Segmentation Strategy" in SAP S/4HANA. It reads from 1 data source (I_Product) and exposes 13 fields with key field Product.

Data Sources (1)

SourceAliasJoin Type
I_Product I_Product from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Materials having Segmentation Strategy view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
ProductGroup ProductGroup Product Sold Group
ProductCategory ProductCategory Prod Category
CrossPlantConfigurableProduct CrossPlantConfigurableProduct Cross-plant CP
SegmentationStrategy SegmentationStrategy Seg. Strategy
SegmentationIsRelevant SegmentationIsRelevant Seg. Relevant
AuthorizationGroup AuthorizationGroup AuthorizGroup
SegmentationStructure SegmentationStructure
_Text _Text

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_SegmentationStrategyMaterial.
-- 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.

CREATE VIEW I_SegmentationStrategyMaterial AS
SELECT
  Product,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser,
  ProductGroup,
  ProductCategory,
  CrossPlantConfigurableProduct,
  SegmentationStrategy,
  SegmentationIsRelevant,
  AuthorizationGroup,
  SegmentationStructure
FROM I_Product
;