I_RetailStoreProductImage
Retail Store Product Image Helper
I_RetailStoreProductImage is a Composite CDS View that provides data about "Retail Store Product Image Helper" in SAP S/4HANA. It reads from 2 data sources (I_Product, I_RetailStoreImageType) and exposes 4 fields with key fields Product, RetailStoreImageType. Part of development package ODATA_RETAIL_ST_COMMON.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Product | I_Product | from |
| I_RetailStoreImageType | I_RetailStoreImageType | cross |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRTSTPRODIMAGE | view | |
| EndUserText.label | Retail Store Product Image Helper | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.representativeKey | RetailStoreImageType | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Product | Product | ||
| KEY | RetailStoreImageType | RetailStoreImageType | ||
| ProductImageURL | ||||
| MimeType |
@AbapCatalog.sqlViewName: 'IRTSTPRODIMAGE'
@EndUserText.label: 'Retail Store Product Image Helper'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel: {
representativeKey: 'RetailStoreImageType',
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MIXED
}
define view I_RetailStoreProductImage
as select from I_Product
cross join I_RetailStoreImageType
{
key Product,
key RetailStoreImageType,
@Semantics.imageUrl: true
@ObjectModel.readOnly: true
@ObjectModel.virtualElement: true
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_RTST_PRODUCTIMAGEURL_CALC'
cast('' as productimageurl) as ProductImageURL,
cast('' as abap.char(128)) as MimeType
}
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