I_UnitOfMeasureISOCodeText

DDL: I_UNITOFMEASUREISOCODETEXT SQL: IUOMISOCODETEXT Type: view BASIC

Unit of Measure ISO Code Text

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

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

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IUOMISOCODETEXT 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 ISO Code 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 #MASTER view
ObjectModel.representativeKey UnitOfMeasureISOCode view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
_Language _Language
KEY UnitOfMeasureISOCode t006j isocode ISO Code for Unit of Measurement
UnitOfMeasureISOCodeName t006j isotxt ISO Code Text
_ISOCode _ISOCode

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_UnitOfMeasureISOCodeText.
-- 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: IUOMISOCODETEXT

CREATE VIEW I_UnitOfMeasureISOCodeText AS
SELECT
  langu AS Language,
  t006j.isocode AS UnitOfMeasureISOCode,
  t006j.isotxt AS UnitOfMeasureISOCodeName
FROM t006j
;