I_WeightRelevanceFactor

DDL: I_WEIGHTRELEVANCEFACTOR SQL: IWEIGHTRELEVFACT Type: view BASIC Package: VDM_MM_GF

Customizing for Relevance Weighting

I_WeightRelevanceFactor is a Basic CDS View that provides data about "Customizing for Relevance Weighting" in SAP S/4HANA. It reads from 1 data source (weightrelevfact) and exposes 4 fields with key fields RelevanceObjectType, RelevanceSituation, RelevanceWeightingAttribute. Part of development package VDM_MM_GF.

Data Sources (1)

SourceAliasJoin Type
weightrelevfact weightRelevanceFactor from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.sqlViewName IWEIGHTRELEVFACT view
EndUserText.label Customizing for Relevance Weighting view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY RelevanceObjectType weightrelevfact objecttype Type
KEY RelevanceSituation weightrelevfact situation Situation Rel. Rank.
KEY RelevanceWeightingAttribute weightrelevfact weightname Weight Name
RelevanceWeightingFactor weightrelevfact weightvalue Weight Value

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_WeightRelevanceFactor.
-- 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: IWEIGHTRELEVFACT

CREATE VIEW I_WeightRelevanceFactor AS
SELECT
  weightRelevanceFactor.objecttype AS RelevanceObjectType,
  weightRelevanceFactor.situation AS RelevanceSituation,
  weightRelevanceFactor.weightname AS RelevanceWeightingAttribute,
  weightRelevanceFactor.weightvalue AS RelevanceWeightingFactor
FROM weightrelevfact AS weightRelevanceFactor
;