P_ACMSameDimnUoMCnvrsnFactor

DDL: P_ACMSAMEDIMNUOMCNVRSNFACTOR Type: view_entity COMPOSITE

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

Data Sources (1)

SourceAliasJoin Type
P_ACMSameDimnUoMCnvrsnFactMul P_ACMSameDimnUoMCnvrsnFactMul from

Annotations (6)

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

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SourceUnitOfMeasure SourceUnitOfMeasure
KEY TargetQuantityUnitOfMeasure TargetQuantityUnitOfMeasure
SourceDimensionText SourceDimensionText
TargetDimensionText TargetDimensionText
SourceUnitOfMeasureNumerator SourceUnitOfMeasureNumerator
SourceUnitOfMeasureDenominator SourceUnitOfMeasureDenominator
TargetUnitOfMeasureNumerator TargetUnitOfMeasureNumerator
TargetUnitOfMeasureDenominator TargetUnitOfMeasureDenominator
ACMQtyConversionFactor 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_ACMSameDimnUoMCnvrsnFactor.
-- 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_ACMSameDimnUoMCnvrsnFactor AS
SELECT
  SourceUnitOfMeasure,
  TargetQuantityUnitOfMeasure,
  SourceDimensionText,
  TargetDimensionText,
  SourceUnitOfMeasureNumerator,
  SourceUnitOfMeasureDenominator,
  TargetUnitOfMeasureNumerator,
  TargetUnitOfMeasureDenominator,
  ACMQtyConversionFactor
FROM P_ACMSameDimnUoMCnvrsnFactMul
;