A_ProductStorage_3

DDL: A_PRODUCTSTORAGE_3 Type: view_entity CONSUMPTION

Product Storage

A_ProductStorage_3 is a Consumption CDS View that provides data about "Product Storage" in SAP S/4HANA. It reads from 1 data source (R_ProductStorageTP) and exposes 17 fields with key field Product.

Data Sources (1)

SourceAliasJoin Type
R_ProductStorageTP R_ProductStorageTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Product Storage view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name ProductStorage_Type view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
StorageConditions StorageConditions Stor.conditions
ProdTemperatureConditionCode ProdTemperatureConditionCode Temperature
HazardousProduct HazardousProduct Haz. matl no.
NmbrOfGROrGISlipsToPrintQty NmbrOfGROrGISlipsToPrintQty Number of GR slips
LabelType LabelType Label Type
LabelForm LabelForm Label Form
MinRemainingShelfLife MinRemainingShelfLife Rem. Shelf Life
ProductExpirationDateType ProductExpirationDateType Expiration Date
StorageBinInstruction StorageBinInstruction Container
ShelfLifeExpirationDatePeriod ShelfLifeExpirationDatePeriod Period Ind.
ShelfLifeExprtnDateRndngRule ShelfLifeExprtnDateRndngRule Rounding rule
TotalShelfLifeStoragePercent TotalShelfLifeStoragePercent Storage %
TotalShelfLife TotalShelfLife Tot. shelf life
BaseUnit BaseUnit Unit of Measure
BaseISOUnit
_ProductredirectedtoparentA_Product_3

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 A_ProductStorage_3.
-- 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 A_ProductStorage_3 AS
SELECT
  Product,
  StorageConditions,
  ProdTemperatureConditionCode,
  HazardousProduct,
  NmbrOfGROrGISlipsToPrintQty,
  LabelType,
  LabelForm,
  MinRemainingShelfLife,
  ProductExpirationDateType,
  StorageBinInstruction,
  ShelfLifeExpirationDatePeriod,
  ShelfLifeExprtnDateRndngRule,
  TotalShelfLifeStoragePercent,
  TotalShelfLife,
  BaseUnit,
  cast( _Product._BaseUnitOfMeasure.UnitOfMeasureISOCode as meins_iso preserving type ) AS BaseISOUnit
FROM R_ProductStorageTP
;