I_CustomsUnitOfMeasure

DDL: I_CUSTOMSUNITOFMEASURE SQL: ICUSTMSUOM Type: view BASIC Package: VDM_SLL_CLS

Customs Unit of Measure

I_CustomsUnitOfMeasure is a Basic CDS View that provides data about "Customs Unit of Measure" in SAP S/4HANA. It reads from 1 data source (/sapsll/tuomc) and exposes 3 fields with key fields UnitOfMeasureSystem, CustomsUnitOfMeasure. It has 1 association to related views. It is exposed through 6 OData services (ASQL_F2516, ASQL_F2545, ASQL_F2792, ...). Part of development package VDM_SLL_CLS.

Data Sources (1)

SourceAliasJoin Type
/sapsll/tuomc /sapsll/tuomc from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CustomsUnitOfMeasureText _CustomsUnitOfMeasureText $projection.CustomsUnitOfMeasure = _CustomsUnitOfMeasureText.CustomsUnitOfMeasure and $projection.UnitOfMeasureSystem = _CustomsUnitOfMeasureText.UnitOfMeasureSystem

Annotations (12)

NameValueLevelField
EndUserText.label Customs Unit of Measure view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICUSTMSUOM view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey CustomsUnitOfMeasure view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #SINGLE view
ObjectModel.usageType.sizeCategory M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

OData Services (6)

ServiceBindingVersionContractRelease
ASQL_F2516 ASQL_F2516 C2 NOT_RELEASED
ASQL_F2545 ASQL_F2545 C2 NOT_RELEASED
ASQL_F2792 ASQL_F2792 C2 NOT_RELEASED
ASQL_F3122 ASQL_F3122 C2 NOT_RELEASED
ASQL_F3146 ASQL_F3146 C2 NOT_RELEASED
ASQL_F3147 ASQL_F3147 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasureSystem nosms UoM System
KEY CustomsUnitOfMeasure cuuom Customs UoM
_CustomsUnitOfMeasureText _CustomsUnitOfMeasureText

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_CustomsUnitOfMeasure.
-- 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: ICUSTMSUOM

CREATE VIEW I_CustomsUnitOfMeasure AS
SELECT
  nosms AS UnitOfMeasureSystem,
  cuuom AS CustomsUnitOfMeasure
FROM /sapsll/tuomc
LEFT OUTER JOIN I_CustomsUnitOfMeasureText AS _CustomsUnitOfMeasureText ON CustomsUnitOfMeasure = _CustomsUnitOfMeasureText.CustomsUnitOfMeasure AND UnitOfMeasureSystem = _CustomsUnitOfMeasureText.UnitOfMeasureSystem  -- association [0..*]
;