Show / Hide Table of Contents

Pick Activity Started (PAS)

eManager sends the Pick Activity Started (PAS) export to the WMS/ERP system when a user starts working on a pick activity in one of the "Pick" user interfaces. At this point it is no longer possible to update the pick list that has been started by sending a new Pick List (PL) import.

If labels are printed by the WMS/ERP/host system at the start of a pick activity, use the Pick Activity Started (PAS) export to trigger printing.

Conditions

  • If a deviation occurs, it is possible that the export will be generated without a printer/ port name
  • If a pick list is finished from the admin interface instead of the normal picking interface, no PAS export will be sent
  • If a pick list is assigned to a user who closes the port, causing the pick list to be unassigned, a new PAS export will be sent the next time the pick list is assigned to a user

Data structure

The tables below describe the Pick Activity Started (PAS) data structure.

Pick Activity Started (PAS) export

Field name Type Length Description
TransactionId Integer 32-bit Unique identification of transaction
ActivityId Integer 32-bit Unique identification of the activity
Activated DateTime? - Nullable DateTime value indicating the date and time of the activation of the pick activity
Usercode String 50 Identifier of the user who started the activity
EquipmentId String 50 Number of the AutoStore port where the activity was started
PrinterName String 50 Identification of the AutoStore port, at which the pick list/task group is assigned to the user
Shipments ShipmentDetails - Collection of shipment details

Shipment Details

Field name Type Length Description
ShipmentId Integer 32-bit Identifier for the shipment
PicklistId String 50 Identifier for the pick list
DeliveryLocation String 50 Put-To-Light location used for this shipment
BoxType String 50 The box type used for this shipment. This field will only be included if a BoxType was specified in the pick list.

Examples

XML

<?xml version="1.0" encoding="utf-8"?>
<PickActivityStarted>
  <TransactionId>6346856</TransactionId>
  <ActivityId>6557478</ActivityId>
  <Activated>2018-11-20T07:56:45.407+01:00</Activated>
  <UserCode>adm</UserCode>
  <EquipmentId>1</EquipmentId>
  <PrinterName>\\10.1.1.59\Autostore01</PrinterName>
  <Shipments>
    <Shipment>
      <ShipmentId>1408511</ShipmentId>
      <PicklistId>3316041</PicklistId>
      <DeliveryLocation>POS1</DeliveryLocation>
    </Shipment>
    <Shipment>
      <ShipmentId>1408512</ShipmentId>
      <PicklistId>3316040</PicklistId>
      <DeliveryLocation>POS2</DeliveryLocation>
    </Shipment>
    <Shipment>
      <ShipmentId>1408513</ShipmentId>
      <PicklistId>3316043</PicklistId>
      <DeliveryLocation>POS3</DeliveryLocation>
    </Shipment>
    <Shipment>
      <ShipmentId>1408514</ShipmentId>
      <PicklistId>3316042</PicklistId>
      <DeliveryLocation>POS4</DeliveryLocation>
      <BoxType>box-1</BoxType>
    </Shipment>
  </Shipments>
</PickActivityStarted>
  • Improve this Doc
Back to top Generated by DocFX