I_UnitOfMeasureText

DDL: I_UNITOFMEASURETEXT SQL: IUNITOFMEASTEXT Type: view BASIC

Unit of Measure Text

I_UnitOfMeasureText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_UnitOfMeasureText is a Basic CDS View that provides data about "Unit of Measure Text" in SAP S/4HANA. It reads from 1 data source (t006a) and exposes 9 fields with key fields Language, UnitOfMeasure. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ASF-UOM
CapabilitiesLanguage-Dependent Text, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t006a t006a from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_UnitOfMeasure _UnitOfMeasure $projection.UnitOfMeasure = _UnitOfMeasure.UnitOfMeasure
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IUNITOFMEASTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Unit of Measure Text view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey UnitOfMeasure view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
_Language _Language
KEY UnitOfMeasure msehi Unit of Measurement
_UnitOfMeasure _UnitOfMeasure
UnitOfMeasureLongName msehl Unit of Measurement Text (Maximum 30 Characters)
UnitOfMeasureName mseht Unit of Measurement Text (Maximum 10 Characters)
UnitOfMeasureTechnicalName mseh6 External Unit of Measurement in Technical Format (6-Char.)
UnitOfMeasure_E mseh3 External Unit of Measurement in Commercial Format (3-Char.)
UnitOfMeasureCommercialName mseh3 External Unit of Measurement in Commercial Format (3-Char.)

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_UnitOfMeasureText.
-- 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: IUNITOFMEASTEXT

CREATE VIEW I_UnitOfMeasureText AS
SELECT
  spras AS Language,
  msehi AS UnitOfMeasure,
  msehl AS UnitOfMeasureLongName,
  mseht AS UnitOfMeasureName,
  mseh6 AS UnitOfMeasureTechnicalName,
  mseh3 AS UnitOfMeasure_E,
  mseh3 AS UnitOfMeasureCommercialName
FROM t006a
LEFT OUTER JOIN I_UnitOfMeasure AS _UnitOfMeasure ON UnitOfMeasure = _UnitOfMeasure.UnitOfMeasure  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;