I_ATPSelOptnToolUnitOfMeasure

DDL: I_ATPSELOPTNTOOLUNITOFMEASURE Type: view_entity BASIC

Selection Option Tool Unit of Measure

I_ATPSelOptnToolUnitOfMeasure is a Basic CDS View that provides data about "Selection Option Tool Unit of Measure" in SAP S/4HANA. It reads from 1 data source (t006) and exposes 5 fields with key field UnitOfMeasure. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t006 t006 from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_UnitOfMeasureText _Text $projection.UnitOfMeasure = _Text.UnitOfMeasure
[0..1] I_UnitOfMeasureDimension _Dimension $projection.UnitOfMeasureDimension = _Dimension.UnitOfMeasureDimension
[0..*] I_UnitOfMeasureDimensionText _DimensionText $projection.UnitOfMeasureDimension = _DimensionText.UnitOfMeasureDimension

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey UnitOfMeasure view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Analytics.technicalName IATPSelOptnToolUOM view
EndUserText.label Selection Option Tool Unit of Measure view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure msehi Unit of measmnt
UnitOfMeasureDimension dimid Dimension
_Text _Text
_Dimension _Dimension
_DimensionText _DimensionText

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_ATPSelOptnToolUnitOfMeasure.
-- 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 I_ATPSelOptnToolUnitOfMeasure AS
SELECT
  msehi AS UnitOfMeasure,
  dimid AS UnitOfMeasureDimension
FROM t006
LEFT OUTER JOIN I_UnitOfMeasureText AS _Text ON UnitOfMeasure = _Text.UnitOfMeasure  -- association [0..*]
LEFT OUTER JOIN I_UnitOfMeasureDimension AS _Dimension ON UnitOfMeasureDimension = _Dimension.UnitOfMeasureDimension  -- association [0..1]
LEFT OUTER JOIN I_UnitOfMeasureDimensionText AS _DimensionText ON UnitOfMeasureDimension = _DimensionText.UnitOfMeasureDimension  -- association [0..*]
;