R_ProductUnitOfMeasureEANTP

DDL: R_PRODUCTUNITOFMEASUREEANTP Type: view_entity TRANSACTIONAL

Product Unit of Measure EAN

R_ProductUnitOfMeasureEANTP is a Transactional CDS View that provides data about "Product Unit of Measure EAN" in SAP S/4HANA. It reads from 1 data source (I_ProductUnitOfMeasureEAN) and exposes 10 fields with key fields Product, AlternativeUnit, ConsecutiveNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductUnitOfMeasureEAN I_ProductUnitOfMeasureEAN from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_ProductTP _Product $projection.Product = _Product.Product

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Product Unit of Measure EAN view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY AlternativeUnit AlternativeUnit Base UoM
KEY ConsecutiveNumber ConsecutiveNumber Sequence no.
ProductStandardID ProductStandardID GTIN
InternationalArticleNumberCat InternationalArticleNumberCat GTIN Category
IsMainGlobalTradeItemNumber IsMainGlobalTradeItemNumber Main EAN
_InternationalArticleNumber _InternationalArticleNumber
_Product _Product
_ProductUnitOfMeasure _ProductUnitOfMeasure
_AlternativeUnit _AlternativeUnit

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 R_ProductUnitOfMeasureEANTP.
-- 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 R_ProductUnitOfMeasureEANTP AS
SELECT
  Product,
  AlternativeUnit,
  ConsecutiveNumber,
  ProductStandardID,
  InternationalArticleNumberCat,
  IsMainGlobalTradeItemNumber
FROM I_ProductUnitOfMeasureEAN
LEFT OUTER JOIN R_ProductTP AS _Product ON Product = _Product.Product  -- association [1..1]
;