I_EWM_SplitItemWaveAssgmt

DDL: I_EWM_SPLITITEMWAVEASSGMT SQL: IEWMSPLTITMWVAMT Type: view BASIC

EWM Split Item Wave Assignment

I_EWM_SplitItemWaveAssgmt is a Basic CDS View (Fact) that provides data about "EWM Split Item Wave Assignment" in SAP S/4HANA. It reads from 1 data source (/scwm/db_itemspl) and exposes 11 fields with key fields OutboundDeliveryOrderUUID, OutboundDeliveryOrderItemUUID, SplitNumber.

Data Sources (1)

SourceAliasJoin Type
/scwm/db_itemspl Odibinsplitwaveassign from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IEWMSPLTITMWVAMT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label EWM Split Item Wave Assignment view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Analytics.dataCategory #FACT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY OutboundDeliveryOrderUUID /scwm/db_itemspl docid
KEY OutboundDeliveryOrderItemUUID /scwm/db_itemspl itemid
KEY SplitNumber /scwm/db_itemspl split_id
WaveStatus /scwm/db_itemspl waveflg
StorageType /scwm/db_itemspl stotype
EWMStorageType /scwm/db_itemspl stotype
StorageSection /scwm/db_itemspl stosec
EWMStorageSection /scwm/db_itemspl stosec
ActivityArea /scwm/db_itemspl aarea
EWMWhseReqSplitItemQty /scwm/db_itemspl qty
EWMWhseReqSplitItemQtyUnit /scwm/db_itemspl uom
@AbapCatalog.sqlViewName: 'IEWMSPLTITMWVAMT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'EWM Split Item Wave Assignment'

@ObjectModel.representativeKey:      ['OutboundDeliveryOrderUUID','OutboundDeliveryOrderItemUUID']

@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType:#BASIC
@Analytics: { dataCategory: #FACT }

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #XL

define view I_EWM_SplitItemWaveAssgmt
  as select from /scwm/db_itemspl as Odibinsplitwaveassign
{
  key Odibinsplitwaveassign.docid    as OutboundDeliveryOrderUUID,
  key Odibinsplitwaveassign.itemid   as OutboundDeliveryOrderItemUUID,
  key Odibinsplitwaveassign.split_id as SplitNumber,
      Odibinsplitwaveassign.waveflg  as WaveStatus,

      @VDM.lifecycle.status: #DEPRECATED
      @VDM.lifecycle.successor:  'EWMStorageType'
      Odibinsplitwaveassign.stotype  as StorageType,
      Odibinsplitwaveassign.stotype  as EWMStorageType,
      @VDM.lifecycle.status: #DEPRECATED
      @VDM.lifecycle.successor:  'EWMStorageSection'
      Odibinsplitwaveassign.stosec   as StorageSection,
      Odibinsplitwaveassign.stosec   as EWMStorageSection,
      Odibinsplitwaveassign.aarea    as ActivityArea,
      Odibinsplitwaveassign.qty      as EWMWhseReqSplitItemQty,
      Odibinsplitwaveassign.uom      as EWMWhseReqSplitItemQtyUnit
} 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/SCWM/DB_ITEMSPL"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/