I_SuplrEvalClassificationText

DDL: I_SUPLREVALCLASSIFICATIONTEXT SQL: ISEVCLFNTXT Type: view BASIC

Supplier Eval Classification - Text

I_SuplrEvalClassificationText is a Basic CDS View that provides data about "Supplier Eval Classification - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, SupplierClassification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _Language.Language = $projection.Language

Annotations (17)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISEVCLFNTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SupplierClassification view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
EndUserText.label Supplier Eval Classification - Text view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY SupplierClassification
SupplierClfnName
_Classification _Classification
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ISEVCLFNTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'SupplierClassification'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality:#A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@EndUserText.label: 'Supplier Eval Classification - Text'
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@ObjectModel.dataCategory: #TEXT
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT

define view I_SuplrEvalClassificationText

  as select from dd07t
  association[1..1] to I_SuplrEvalClassification as _Classification on $projection.SupplierClassification = _Classification.SupplierClassification
  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: '_Classification'

      @ObjectModel.text.element: ['SupplierClfnName']
  key cast( dd07t.domvalue_l as mm_classification )                                                                      as SupplierClassification,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast (dd07t.ddtext as mm_classifciation_text )                                                                     as SupplierClfnName,

      _Classification,
      _Language

}
where
      dd07t.domname  = 'MM_CLASSIFICATION'
  and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SUPLREVALCLASSIFICATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/