I_OilPhysParamUoMVH

DDL: I_OILPHYSPARAMUOMVH SQL: IPHYPARUOMVH Type: view BASIC

UoM Value Help for Physical Parameters

I_OilPhysParamUoMVH is a Basic CDS View that provides data about "UoM Value Help for Physical Parameters" in SAP S/4HANA. It reads from 6 data sources and exposes 7 fields with key fields OilPhysParamName, UnitOfMeasureDimension, UnitOfMeasure.

Data Sources (6)

SourceAliasJoin Type
t006d _DimidHelp inner
oib_map_uom _ExternalUnit left_outer
oib_map_uomt _ExternalUnittext left_outer
t006 _InternalUnit from
t006a _LanguageUnit inner
oib07_help _oib07help inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IPHYPARUOMVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label UoM Value Help for Physical Parameters view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY OilPhysParamName oib07_help par_name Parameter name
KEY UnitOfMeasureDimension oib07_help dimid Dimension
KEY UnitOfMeasure t006a msehi Unit of measmnt
UnitOfMeasure_E t006a mseh3 Commercial
UnitOfMeasureLongName t006a msehl Meas. Unit Text
cmsehiendasOilUnitOfMeasureExt
cmsehlendasOilUoMExtLongName

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 I_OilPhysParamUoMVH.
-- 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.
-- SQL view name: IPHYPARUOMVH

CREATE VIEW I_OilPhysParamUoMVH AS
SELECT
  _oib07help.par_name AS OilPhysParamName,
  _oib07help.dimid AS UnitOfMeasureDimension,
  _LanguageUnit.msehi AS UnitOfMeasure,
  _LanguageUnit.mseh3 AS UnitOfMeasure_E,
  _LanguageUnit.msehl AS UnitOfMeasureLongName,
  case when _ExternalUnit.cmsehi is null then _LanguageUnit.mseh3 else _ExternalUnit.cmsehi end as OilUnitOfMeasureExt AS cmsehiendasOilUnitOfMeasureExt,
  case when _ExternalUnittext.cmsehl is null then _LanguageUnit.msehl else _ExternalUnittext.cmsehl end as OilUoMExtLongName AS cmsehlendasOilUoMExtLongName
FROM t006 AS _InternalUnit
INNER JOIN oib07_help AS _oib07help ON /* join condition not captured in parsed metadata */
INNER JOIN t006d AS _DimidHelp ON /* join condition not captured in parsed metadata */
INNER JOIN t006a AS _LanguageUnit ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN oib_map_uom AS _ExternalUnit ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN oib_map_uomt AS _ExternalUnittext ON /* join condition not captured in parsed metadata */
;