SEPMRA_I_ProductImage

DDL: SEPMRA_I_PRODUCTIMAGE Type: view Package: S_EPMRA_COMMON

Product Image

SEPMRA_I_ProductImage is a CDS View that provides data about "Product Image" in SAP S/4HANA. It reads from 1 data source (SEPMRA_I_ProductAttachment) and exposes 5 fields with key fields Product, ProductImage. Part of development package S_EPMRA_COMMON.

Data Sources (1)

SourceAliasJoin Type
SEPMRA_I_ProductAttachment ProductAttachment from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName SEPMRAIPDIMG view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Product Image view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product SEPMRA_I_ProductAttachment Product Product Sold
KEY ProductImage
MIMEType SEPMRA_I_ProductAttachment MIMEType MIMETYPE
FileName SEPMRA_I_ProductAttachment FileName URL or Filenam Path
_Product SEPMRA_I_ProductAttachment _Product

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view SEPMRA_I_ProductImage.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW SEPMRA_I_ProductImage AS
SELECT
  ProductAttachment.Product AS Product,
  cast(ProductAttachment.ProductAttachment as sepmra_productimage preserving type) AS ProductImage,
  ProductAttachment.MIMEType AS MIMEType,
  ProductAttachment.FileName AS FileName,
  ProductAttachment._Product AS _Product
FROM SEPMRA_I_ProductAttachment AS ProductAttachment
;