I_RFMMaterialSegmentVH

DDL: I_RFMMATERIALSEGMENTVH SQL: IRFMSEG Type: view BASIC

Value Help for Segment

I_RFMMaterialSegmentVH is a Basic CDS View that provides data about "Value Help for Segment" in SAP S/4HANA. It reads from 1 data source (P_ProductPlantBasic) and exposes 4 fields with key fields Product, Plant.

Data Sources (1)

SourceAliasJoin Type
P_ProductPlantBasic ProductPlant from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IRFMSEG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value Help for Segment view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Product P_ProductPlantBasic Product Product Sold
KEY Plant P_ProductPlantBasic Plant Valuation Area
SegmentationStrategy P_ProductPlantBasic SegmentationStrategyForPlant Segment. Strategy
SegmentName sgt_vals sgt_scat Stock Segment

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_RFMMaterialSegmentVH.
-- 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: IRFMSEG

CREATE VIEW I_RFMMaterialSegmentVH AS
SELECT
  ProductPlant.Product AS Product,
  ProductPlant.Plant AS Plant,
  ProductPlant.SegmentationStrategyForPlant AS SegmentationStrategy,
  sgt_vals.sgt_scat AS SegmentName
FROM P_ProductPlantBasic AS ProductPlant
;