SEPMRA_I_DimensionUnit

DDL: SEPMRA_I_DIMENSIONUNIT Type: view

Dimension Unit

SEPMRA_I_DimensionUnit is a CDS View that provides data about "Dimension Unit" in SAP S/4HANA. It reads from 1 data source (t006) and exposes 3 fields with key field UnitOfMeasure. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t006 UnitOfMeasure from

Associations (1)

CardinalityTargetAliasCondition
[0..*] SEPMRA_I_UnitOfMeasureText _Text $projection.UnitOfMeasure = _Text.UnitOfMeasure

Annotations (15)

NameValueLevelField
EndUserText.label Dimension Unit view
AbapCatalog.sqlViewName SEPMRAIDIMU view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey UnitOfMeasure view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
UI.headerInfo.typeName Dimension Unit view
UI.headerInfo.typeNamePlural Dimension Units view
UI.headerInfo.typeImageUrl sap-icon: title: { value: view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure Unit of measmnt
UnitOfMeasureISOCode isocode ISO Code
_Text _Text

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 SEPMRA_I_DimensionUnit.
-- 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 SEPMRA_I_DimensionUnit AS
SELECT
  cast( msehi as snwd_dim_unit preserving type ) AS UnitOfMeasure,
  isocode AS UnitOfMeasureISOCode
FROM t006 AS UnitOfMeasure
LEFT OUTER JOIN SEPMRA_I_UnitOfMeasureText AS _Text ON UnitOfMeasure = _Text.UnitOfMeasure  -- association [0..*]
;