P_ACMSameNDUoMCnvrsnFactMul

DDL: P_ACMSAMENDUOMCNVRSNFACTMUL Type: view_entity COMPOSITE

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

Data Sources (1)

SourceAliasJoin Type
P_ACMSameNDUoMCnvrsnFactCal P_ACMSameNDUoMCnvrsnFactCal from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED 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_ACMSameNDUoMCnvrsnFactMul.
-- 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_ACMSameNDUoMCnvrsnFactMul AS
SELECT
  SourceUnitOfMeasure,
  TargetQuantityUnitOfMeasure,
  SourceDimensionText,
  TargetDimensionText,
  SourceUnitOfMeasureNumerator,
  SourceUnitOfMeasureDenominator,
  TargetUnitOfMeasureNumerator,
  TargetUnitOfMeasureDenominator,
  ConversionFact1 * ConversionFact2 AS ACMQtyConversionFactor
FROM P_ACMSameNDUoMCnvrsnFactCal
;