C_MfgOrdDocdGoodsMvt

DDL: C_MFGORDDOCDGOODSMVT Type: view_entity CONSUMPTION Package: PP_MFGORDER_UI

Documented Goods Movement of an Order

C_MfgOrdDocdGoodsMvt is a Consumption CDS View that provides data about "Documented Goods Movement of an Order" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderDocdGoodsMovement) and exposes 77 fields with key fields GoodsMovement, MaterialDocumentItem, MaterialDocumentYear. Part of development package PP_MFGORDER_UI.

Data Sources (1)

SourceAliasJoin Type
I_MfgOrderDocdGoodsMovement I_MfgOrderDocdGoodsMovement from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
EndUserText.label Documented Goods Movement of an Order view
UI.headerInfo.typeName DocumentedGoodsMovement view
UI.headerInfo.typeNamePlural Documented Goods Movements view

Fields (77)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovement GoodsMovement
KEY MaterialDocumentItem GoodsMovementItem
KEY MaterialDocumentYear GoodsMovementYear
MaterialDocument GoodsMovement
ManufacturingOrder ManufacturingOrder Order
ManufacturingOrderCategory ManufacturingOrderCategory Order Category
ManufacturingOrderType ManufacturingOrderType
ProductionPlant ProductionPlant Prod plnt
Material Material Vehicle Model
ProductDescription
GoodsMovementPlant GoodsMovementPlant
Reservation Reservation Reservation
ReservationItem ReservationItem Reservation Item
ReservationRecordType ReservationRecordType Record type
ReservationIsFinallyIssued ReservationIsFinallyIssued Res Final Issue
StorageLocation StorageLocation StorageLocation
Batch Batch Lot No.
InventoryValuationType InventoryValuationType Valuation Type
DebitCreditCode DebitCreditCode Single-Character Flag
GoodsMovementType GoodsMovementType Movement Type
GoodsMovementRefDocType GoodsMovementRefDocType Reference Doc. Type
InventorySpecialStockType InventorySpecialStockType Special Stock Type
SalesOrder SalesOrder SD Document
SalesOrderItem SalesOrderItem Sales Order Item
WBSElementInternalID WBSElementInternalID WBS Internal ID
WBSElementExternalID _WBSElement WBSElementExternalID WBS Element External ID
WBSDescription _WBSElement WBSDescription WBS Element Name
PurchaseOrder
PurchaseOrderItem
Supplier Supplier Supplier
GoodsRecipientName GoodsRecipientName Recipient Name
UnloadingPointName UnloadingPointName Unloading Point Name
GoodsReceiptIsNonValuated GoodsReceiptIsNonValuated GR Non-Valuated
GoodsReceiptIsCmpltlyDelivered GoodsReceiptIsCmpltlyDelivered
ControllingArea ControllingArea Controlling Area
GLAccount GLAccount General Ledger
PostingDate PostingDate Posting Date for GR
DocumentDate DocumentDate Journal Entry Date
BaseUnit BaseUnit Unit of Measure
QuantityInBaseUnit QuantityInBaseUnit Quantity
EntryUnit EntryUnit Unit of Entry
QuantityInEntryUnit QuantityInEntryUnit Quantity in Unit of Entry
CompanyCodeCurrency CompanyCodeCurrency Local Currency
GoodsMovementYear GoodsMovementYear
GoodsMovementItem GoodsMovementItem
_GoodsMovementYear _GoodsMovementYear
_GoodsMovementHeader _GoodsMovementHeader
_GoodsMovementItem _GoodsMovementItem
_MfgOrder _MfgOrder
_MfgOrderCategory _MfgOrderCategory
_MfgOrderType _MfgOrderType
_ProductionPlant _ProductionPlant
_DocumentDate _DocumentDate
_PostingDate _PostingDate
_Material _Material
_GoodsMovementPlant _GoodsMovementPlant
_Reservation _Reservation
_ReservationItem _ReservationItem
_ReservationRecordType _ReservationRecordType
_StorageLocation _StorageLocation
_Batch _Batch
_BaseUnit _BaseUnit
_EntryUnit _EntryUnit
_GoodsMovementType _GoodsMovementType
_GoodsMovementRefDocType _GoodsMovementRefDocType
_InventorySpecialStockType _InventorySpecialStockType
_InventoryValuationType _InventoryValuationType
_DebitCreditCode _DebitCreditCode
_SalesOrder _SalesOrder
_WBSElement _WBSElement
_PurchaseOrder _PurchaseOrder
_PurchaseOrderItem _PurchaseOrderItem
_Supplier _Supplier
_SupplierCompanyByPlant _SupplierCompanyByPlant
_GLAccount _GLAccount
_ControllingArea _ControllingArea
_Currency _Currency

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 C_MfgOrdDocdGoodsMvt.
-- 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.

CREATE VIEW C_MfgOrdDocdGoodsMvt AS
SELECT
  GoodsMovement,
  GoodsMovementItem AS MaterialDocumentItem,
  GoodsMovementYear AS MaterialDocumentYear,
  GoodsMovement AS MaterialDocument,
  ManufacturingOrder,
  ManufacturingOrderCategory,
  ManufacturingOrderType,
  ProductionPlant,
  Material,
  cast( _Material._Text[1:Language=$session.system_language].ProductName as maktx) AS ProductDescription,
  GoodsMovementPlant,
  Reservation,
  ReservationItem,
  ReservationRecordType,
  ReservationIsFinallyIssued,
  StorageLocation,
  Batch,
  InventoryValuationType,
  DebitCreditCode,
  GoodsMovementType,
  GoodsMovementRefDocType,
  InventorySpecialStockType,
  SalesOrder,
  SalesOrderItem,
  WBSElementInternalID,
  _WBSElement.WBSElementExternalID AS WBSElementExternalID,
  _WBSElement.WBSDescription AS WBSDescription,
  Supplier,
  GoodsRecipientName,
  UnloadingPointName,
  GoodsReceiptIsNonValuated,
  GoodsReceiptIsCmpltlyDelivered,
  ControllingArea,
  GLAccount,
  PostingDate,
  DocumentDate,
  BaseUnit,
  QuantityInBaseUnit,
  EntryUnit,
  QuantityInEntryUnit,
  CompanyCodeCurrency,
  GoodsMovementYear,
  GoodsMovementItem
FROM I_MfgOrderDocdGoodsMovement
;