I_CacheSupplierVH

DDL: I_CACHESUPPLIERVH SQL: ICACHESUPPLIERVH Type: view COMPOSITE

Cache Suppliers without a Master Key

I_CacheSupplierVH is a Composite CDS View that provides data about "Cache Suppliers without a Master Key" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 3 fields with key field Supplier. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Supplier Supplier from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICACHESUPPLIERVH view
EndUserText.label Cache Suppliers without a Master Key view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Supplier view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #META view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier I_Supplier Supplier
SupplierName _Supplier SupplierName
_Supplier _Supplier
@AbapCatalog.sqlViewName: 'ICACHESUPPLIERVH'
@EndUserText.label: 'Cache Suppliers without a Master Key'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel:
{
  representativeKey: 'Supplier',
  usageType:
              {
                serviceQuality: #C,
                sizeCategory: #XL,
                dataClass: #META
              }
}
@Search.searchable: true

define view I_CacheSupplierVH
  as select from I_Supplier as Supplier
  association [0..1] to I_Supplier as _Supplier on $projection.Supplier = _Supplier.Supplier

{
      @ObjectModel.text.element: ['SupplierName']
      @Search:{
              defaultSearchElement: true,
              ranking: #HIGH,
              fuzzinessThreshold: 0.8
              }
  key Supplier.Supplier      as Supplier,
      _Supplier.SupplierName as SupplierName,
      _Supplier
}