C_ATPRlvtProdAltvUoMVH

DDL: C_ATPRLVTPRODALTVUOMVH Type: view_entity CONSUMPTION Package: ODATA_ATP_DISP_PROD_AVAILY

Alternative Unit of Measure for product

C_ATPRlvtProdAltvUoMVH is a Consumption CDS View that provides data about "Alternative Unit of Measure for product" in SAP S/4HANA. It reads from 1 data source (I_ProductUnitsOfMeasure) and exposes 8 fields with key fields Product, AlternativeUnit. It is exposed through 1 OData service (ASQL_F7884). Part of development package ODATA_ATP_DISP_PROD_AVAILY.

Data Sources (1)

SourceAliasJoin Type
I_ProductUnitsOfMeasure I_ProductUnitsOfMeasure from

Annotations (11)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Alternative Unit of Measure for product view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey Product view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F7884 ASQL_F7884 C2 NOT_RELEASED

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY AlternativeUnit AlternativeUnit Alternative Unit
UnitOfMeasureLongName
ProductName
Material Product Product
BaseUnit BaseUnit Base Unit
QuantityNumerator QuantityNumerator Quantity in Base Unit
QuantityDenominator QuantityDenominator Quantity in Alternative Unit

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 C_ATPRlvtProdAltvUoMVH.
-- 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 C_ATPRlvtProdAltvUoMVH AS
SELECT
  Product,
  AlternativeUnit,
  _AlternativeUnitText[ 1: Language = $session.system_language ].UnitOfMeasureLongName AS UnitOfMeasureLongName,
  _Product._Text[ 1: Language = $session.system_language ].ProductName AS ProductName,
  Product AS Material,
  BaseUnit,
  QuantityNumerator,
  QuantityDenominator
FROM I_ProductUnitsOfMeasure
;