I_MaintOrderConfGoodsMovement

DDL: I_MAINTORDERCONFGOODSMOVEMENT SQL: IMAINTORDCONFGM Type: view BASIC

Goods Movements for Order Confirmation

I_MaintOrderConfGoodsMovement is a Basic CDS View that provides data about "Goods Movements for Order Confirmation" in SAP S/4HANA. It reads from 1 data source (afwi) and exposes 11 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
afwi afwi from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialDocumentRecord _MaterialDocumentRecord _MaterialDocumentRecord.MaterialDocumentYear = $projection.MaterialDocumentYear and _MaterialDocumentRecord.MaterialDocument = $projection.MaterialDocument and _MaterialDocumentRecord.MaterialDocumentItem = $projection.MaterialDocumentItem

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTORDCONFGM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Goods Movements for Order Confirmation view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (11)

KeyFieldSource TableSource FieldDescription
MaintOrderConf afwi rueck
MaintOrderConfCntrValue afwi rmzhl
MaterialDocument afwi mblnr
MaterialDocumentYear afwi mjahr
MaterialDocumentItem afwi mblpo
Material _MaterialDocumentRecord Material
GoodsMovementType _MaterialDocumentRecord GoodsMovementType
QuantityInBaseUnit _MaterialDocumentRecord QuantityInBaseUnit
MaterialBaseUnit _MaterialDocumentRecord MaterialBaseUnit
Reservation _MaterialDocumentRecord Reservation
ReservationItem _MaterialDocumentRecord ReservationItem
@AbapCatalog.sqlViewName: 'IMAINTORDCONFGM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Goods Movements for Order Confirmation'

@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL

define view I_MaintOrderConfGoodsMovement
  as select from afwi
  association [0..1] to I_MaterialDocumentRecord as _MaterialDocumentRecord on  _MaterialDocumentRecord.MaterialDocumentYear = $projection.MaterialDocumentYear
                                                                            and _MaterialDocumentRecord.MaterialDocument     = $projection.MaterialDocument
                                                                            and _MaterialDocumentRecord.MaterialDocumentItem = $projection.MaterialDocumentItem
{
  afwi.rueck as MaintOrderConf,
  afwi.rmzhl as MaintOrderConfCntrValue,
  afwi.mblnr as MaterialDocument,
  afwi.mjahr as MaterialDocumentYear,
  afwi.mblpo as MaterialDocumentItem,

  _MaterialDocumentRecord.Material,
  _MaterialDocumentRecord.GoodsMovementType,
  _MaterialDocumentRecord.QuantityInBaseUnit,
  _MaterialDocumentRecord.MaterialBaseUnit,

  _MaterialDocumentRecord.Reservation,
  _MaterialDocumentRecord.ReservationItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALDOCUMENTRECORD",
"AFWI"
],
"ASSOCIATED":
[
"I_MATERIALDOCUMENTRECORD"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/