I_UnitOfMeasureDimensionText

DDL: I_UNITOFMEASUREDIMENSIONTEXT SQL: IUNITOFMEADIMTXT Type: view BASIC

Unit of Measure Dimension Text

I_UnitOfMeasureDimensionText (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_UnitOfMeasureDimensionText is a Basic CDS View that provides data about "Unit of Measure Dimension Text" in SAP S/4HANA. It reads from 1 data source (t006t) and exposes 5 fields with key fields Language, UnitOfMeasureDimension.

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
t006t t006t from

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IUNITOFMEADIMTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Unit of Measure Dimension Text 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 UnitOfMeasureDimension view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
_Language _Language
KEY UnitOfMeasureDimension dimid Dimension
_UnitOfMeasureDimension _UnitOfMeasureDimension
UnitOfMeasureDimensionName txdim Dimension 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 I_UnitOfMeasureDimensionText.
-- 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: IUNITOFMEADIMTXT

CREATE VIEW I_UnitOfMeasureDimensionText AS
SELECT
  spras AS Language,
  dimid AS UnitOfMeasureDimension,
  txdim AS UnitOfMeasureDimensionName
FROM t006t
;