I_SuplrEvalClassification

DDL: I_SUPLREVALCLASSIFICATION SQL: IMMSEVCLFN Type: view BASIC Package: VDM_MM_PUR_SEV

Supplier Evaluation Classification

I_SuplrEvalClassification (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_SuplrEvalClassification is a Basic CDS View (Dimension) that provides data about "Supplier Evaluation Classification" in SAP S/4HANA. It reads from 1 data source (sews_clfn) and exposes 4 fields with key field SupplierClassification. It has 1 association to related views. Part of development package VDM_MM_PUR_SEV.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-ANA-2CL
CapabilitiesData Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSourcing and Procurement for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
sews_clfn sews_clfn from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SuplrEvalClassificationText _Text $projection.SupplierClassification = _Text.SupplierClassification

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AbapCatalog.preserveKey true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.sqlViewName IMMSEVCLFN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Supplier Evaluation Classification view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
ObjectModel.representativeKey SupplierClassification view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SupplierClassification classification Supplier Evaluation Weighting and Scoring Classification
SuplrClfnFromValue from_value Supplier Evaluation Classification High Value
SuplrClfnToValue to_value Supplier Evaluation Classification Low Value
_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_SuplrEvalClassification.
-- 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: IMMSEVCLFN

CREATE VIEW I_SuplrEvalClassification AS
SELECT
  classification AS SupplierClassification,
  from_value AS SuplrClfnFromValue,
  to_value AS SuplrClfnToValue
FROM sews_clfn
LEFT OUTER JOIN I_SuplrEvalClassificationText AS _Text ON SupplierClassification = _Text.SupplierClassification  -- association [0..*]
;