I_CacheSupplierVH
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)
| Source | Alias | Join Type |
|---|---|---|
| I_Supplier | Supplier | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Supplier | _Supplier | $projection.Supplier = _Supplier.Supplier |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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