I_SuplrEvaluationCriterionText
Supplier Evaluation Criterion Text
I_SuplrEvaluationCriterionText is a Basic CDS View that provides data about "Supplier Evaluation Criterion Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, SuplrEvalCriterion. It has 2 associations to related views. Part of development package VDM_MM_PUR_SEV.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SuplrEvalCriterion | _Criterion | $projection.SuplrEvalCriterion = _Criterion.SuplrEvalCriterion |
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISEVCRITERIATXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Supplier Evaluation Criterion Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SuplrEvalCriterion | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ISEVCRITERIATXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Supplier Evaluation Criterion Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SuplrEvalCriterion'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality:#A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true
// @Analytics.dataCategory: #DIMENSION
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@Analytics.dataExtraction.enabled: true
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities: [ #SEARCHABLE_ENTITY, #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
define view I_SuplrEvaluationCriterionText
as select from dd07t
association [0..1] to I_SuplrEvalCriterion as _Criterion on $projection.SuplrEvalCriterion = _Criterion.SuplrEvalCriterion
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@ObjectModel.foreignKey.association: '_Criterion'
@ObjectModel.text.element: ['SuplrEvalCriterionName']
//key cast( dd07t.domvalue_l as mm_criterion ) as SuplrEvalCriterion,
key cast( cast ( substring( dd07t.domvalue_l, 1, 2 ) as abap.char( 2 ) ) as mm_criterion ) as SuplrEvalCriterion,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
//cast (dd07t.ddtext as mm_criterion_text) as SuplrEvalCriterionName,
cast (dd07t.ddtext as mm_pur_ana_criterion_text) as SuplrEvalCriterionName,
_Criterion,
_Language
}
where
dd07t.domname = 'MM_CRITERION'
and dd07t.as4local = 'A'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA