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 (marc) and exposes 4 fields with key fields Product, Plant.

Data Sources (1)

SourceAliasJoin Type
marc marc from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRFMSEG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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 #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Product matnr Vehicle Model
KEY Plant marc werks Receiving Plant
SegmentationStrategy marc sgt_covs Segment. Strategy
SegmentName 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
  matnr AS Product,
  marc.werks AS Plant,
  marc.sgt_covs AS SegmentationStrategy,
  sgt_scat AS SegmentName
FROM marc
;