I_RO_SAFTUnitOfMeasureMap

DDL: I_RO_SAFTUNITOFMEASUREMAP SQL: IROSAFTUOMM Type: view BASIC Package: GLO_FIN_IS_SAFT_RO

Unit Of Measure Mapping

I_RO_SAFTUnitOfMeasureMap is a Basic CDS View that provides data about "Unit Of Measure Mapping" in SAP S/4HANA. It reads from 1 data source (/ceecv/rocuommap) and exposes 2 fields with key field SourceUnitOfMeasure. Part of development package GLO_FIN_IS_SAFT_RO.

Data Sources (1)

SourceAliasJoin Type
/ceecv/rocuommap UOMM from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IROSAFTUOMM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Unit Of Measure Mapping view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SourceUnitOfMeasure /ceecv/rocuommap meins
SourceUnitOfMeasureFactor /ceecv/rocuommap uom
@AbapCatalog.sqlViewName: 'IROSAFTUOMM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Unit Of Measure Mapping'
define view I_RO_SAFTUnitOfMeasureMap 
  as select from /ceecv/rocuommap as UOMM 
{
  key UOMM.meins as SourceUnitOfMeasure,
      UOMM.uom   as SourceUnitOfMeasureFactor
}