Show / Hide Table of Contents

    Dispatch task type

    The Dispatch task type is used to issue goods from the warehouse.

    The Warehouse Order Lines with Dispatch task type can be executed using the the Orders menu in @wms-worker or the Execute lines function of the Warehouse Order.

    When executed, the system creates 1 Warehouse Transaction and 1 Document Fulfillment as follows:

    • Warehouse Transactions
    WarehouseTransaction.WarehouseOrder = WarehouseOrderLine.WarehouseOrder
     
    WarehouseTransaction.WarehouseOrderLine = WarehouseOrderLine
     
    WarehouseTransaction.ManagedWarehouse = WarehouseOrderLine.WarehouseOrder.ManagedWarehouse
     
    WarehouseTransaction.ManagedWarehouseLocation = the Warehouse Location set during the line execution
     
    WarehouseTransaction.LogisticUnit = WarehouseOrderLine.LogisticUnit
     
    WarehouseTransaction.Product = the Product set during the line execution
     
    WarehouseTransaction.ProductVariant = WarehouseOrderLine.ProductVariant
     
    WarehouseTransaction.Lot = WarehouseOrderLine.Lot
     
    WarehouseTransaction.SerialNumber = WarehouseOrderLine.SerialNumber
     
    WarehouseTransaction.Direction = OUT
     
    WarehouseTransaction.Quantity = the Quantity set during the line execution
     
    WarehouseTransaction.QuantityUnit = WarehouseOrderLine.QuantityUnit
     
    WarehouseTransaction.CatchQuantity = null
     
    WarehouseTransaction.CreationUser = CurrentUser
     
    WarehouseTransaction.CreationTimeUtc = NOW(Utc)
    
    
    • Document Fulfillment
    DocumentFulfillment.Document = WarehouseOrder
     
    DocumentFulfillment.DocumentLineId = WarehouseOrderLineId
     
    DocumentFulfillment.LineNo = WarehouseOrderLine.LineNo
     
    DocumentFulfillment.FulfillmentType = Completed
     
    DocumentFulfillment.IsFinal = false
     
    DocumentFulfillment.LineType = Line
     
    DocumentFulfillment.QuantityBase = the Quantity set during the line execution DocumentFulfillment.CreationUser = CurrentUser
    
    DocumentFulfillment.DestinationEntityName = Wms_Warehouse_Transactions
    
    • Improve this Doc
    Back to top Generated by DocFX