Making Bulk Print Waves For Fulfilio

Fulfilio Minchinbury may ask for orders to be turned into a bulk wave. What this means in .wms is to turn the orders in the wave to a pack method of AutoConsignment from Carton.

Currently, this method is run during high volume periods for the following clients:

  • Calming Blanket

  • BoozeBud

  • KOH.

For this to work on any tenant, the following must be changed:

  • The tenant must have the Cartonisation.Method setting in the SET table with Value: BASIC_ONELABELPERUNIT.

  • The tenant's CAR1 records for AUSPOSTEPARCEL must have the label template eparcel_standard_withitemcode for eParcel Standard and eparcel_express_withitemcode for eParcel Express.

Note: This method cannot be used in conjunction with Pick To Carton wave method. It is either this method or Pick To Carton.

Use the following SQL to update the orders:

Copy
UPDATE PCK
SET PackMethod = 'AutoConsignment'
WHERE InstanceID = 38
AND TenantID = <InsertTenantID>
AND JobStatus IN ('Allocated','Picking')
AND WaveID IN (SELECT WaveID FROM WVE WHERE InstanceID = 38 AND WaveNumber = <WaveNumber>)
AND DeliveryCountry = 'Australia'