P_ACMSameDimnUoMCnvrsnFactMul

DDL: P_ACMSAMEDIMNUOMCNVRSNFACTMUL Type: view_entity COMPOSITE

P_ACMSameDimnUoMCnvrsnFactMul is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_ACMSameDimnUoMCnvrsnFactCal) and exposes 9 fields with key fields SourceUnitOfMeasure, TargetQuantityUnitOfMeasure.

Data Sources (1)

SourceAliasJoin Type
P_ACMSameDimnUoMCnvrsnFactCal P_ACMSameDimnUoMCnvrsnFactCal from

Annotations (6)

NameValueLevelField
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SourceUnitOfMeasure SourceUnitOfMeasure Unit Protected Qty
KEY TargetQuantityUnitOfMeasure TargetQuantityUnitOfMeasure Unit Protected Qty
SourceDimensionText SourceDimensionText
TargetDimensionText TargetDimensionText
SourceUnitOfMeasureNumerator SourceUnitOfMeasureNumerator Turn-over
SourceUnitOfMeasureDenominator SourceUnitOfMeasureDenominator Turn-over
TargetUnitOfMeasureNumerator TargetUnitOfMeasureNumerator Turn-over
TargetUnitOfMeasureDenominator TargetUnitOfMeasureDenominator Turn-over
ACMQtyConversionFactor

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 P_ACMSameDimnUoMCnvrsnFactMul.
-- 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 P_ACMSameDimnUoMCnvrsnFactMul AS
SELECT
  SourceUnitOfMeasure,
  TargetQuantityUnitOfMeasure,
  SourceDimensionText,
  TargetDimensionText,
  SourceUnitOfMeasureNumerator,
  SourceUnitOfMeasureDenominator,
  TargetUnitOfMeasureNumerator,
  TargetUnitOfMeasureDenominator,
  cast (ConversionFact1 * ConversionFact2 as abap.dec( 22, 5 )) AS ACMQtyConversionFactor
FROM P_ACMSameDimnUoMCnvrsnFactCal
;