UPO_INT_V_STD_VOL_DIM

DDL: UPO_INT_V_STD_VOL_DIM Type: view_entity

Standardized Measurement Volumes

UPO_INT_V_STD_VOL_DIM is a CDS View that provides data about "Standardized Measurement Volumes" in SAP S/4HANA. It reads from 7 data sources and exposes 5 fields with key fields BusinessKey, std_uomendasUnit.

Data Sources (7)

SourceAliasJoin Type
gho_imrg_ext imrge inner
mara material inner
gho_imrg_std_h stdh from
gho_imrg_std_i stdi inner
t006 uom inner
gho_uom_rule_h uomrule inner
gho_uom_rule_i uomruleitem inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Standardized Measurement Volumes view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BusinessKey gho_imrg_std_h bus_key Meas. GUIDD
KEY std_uomendasUnit
StdVolume gho_imrg_std_i std_val Quantity
dimension gho_uom_rule_i dimension Quantity
ConversionGroup gho_uom_rule_h conv_grp Conv. Grp.

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 UPO_INT_V_STD_VOL_DIM.
-- 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 UPO_INT_V_STD_VOL_DIM AS
SELECT
  stdh.bus_key AS BusinessKey,
  case when uomruleitem.dimension = uom.dimid then uomruleitem.uom else stdi.std_uom end as Unit AS std_uomendasUnit,
  stdi.std_val AS StdVolume,
  uomruleitem.dimension AS dimension,
  uomrule.conv_grp AS ConversionGroup
FROM gho_imrg_std_h AS stdh
INNER JOIN mara AS material ON /* join condition not captured in parsed metadata */
INNER JOIN gho_imrg_ext AS imrge ON /* join condition not captured in parsed metadata */
INNER JOIN gho_uom_rule_h AS uomrule ON /* join condition not captured in parsed metadata */
INNER JOIN gho_uom_rule_i AS uomruleitem ON /* join condition not captured in parsed metadata */
INNER JOIN t006 AS uom ON /* join condition not captured in parsed metadata */
INNER JOIN gho_imrg_std_i AS stdi ON /* join condition not captured in parsed metadata */
;