Container Complete (CC)
eManager sends a Container Complete (CC) export to the WMS/ERP system when:
- The last task in a pick list is completed
- A container is closed in the AutoStore "Pick" user interface
eManager can send a Container Complete (CC) export for each shipment container that is completed. The export message indicates the amount of containers used, the contents of each container, and properties of the completed container (e.g. weight and volume).
The export message also includes sender and receiver information for the shipment, and it can be used to trigger label printing from other systems.
Data structure
The table below describes the Container Complete (CC) data structure.
Field name | Type | Length | Description |
---|---|---|---|
TransactionId | Integer | 32-bit | Unique identifier for the transaction. Included in the filename when using file based integration. |
TmsCustomerId | String | 20 | Identifier for the sender in the TMS system |
IncoTerm | String | 3 | Code of the freight rule |
IncoTermText | String | 50 | Description of the freight rule |
ShipmentId | String | 50 | Unique identifier of the shipment |
PrinterName | String | 50 | AutoStore port where the pick list was completed |
Delivery.Name | String | 50 | Delivery name |
Delivery.AddressLine1 | String | 50 | Delivery address line 1 |
Delivery.AddressLine2 | String | 50 | Delivery address line 2 |
Delivery.PostCode | String | 50 | Delivery post code |
Delivery.City | String | 50 | Delivery city |
Delivery.Country | String | 50 | Delivery country |
Invoice.Name | String | 50 | Invoice to name |
Invoice.AddressLine1 | String | 50 | Invoice to address line 1 |
Invoice.AddressLine2 | String | 50 | Invoice to address line 2 |
Invoice.PostCode | String | 50 | Invoice to postcode |
Invoice.City | String | 50 | Delivery city |
Invoice.Country | String | 50 | Invoice to country |
Invoice.CompanyCode | String | 50 | Sender company code |
Sender.Name | String | 50 | Sender name |
Sender.AddressLine1 | String | 50 | Sender address line 1 |
Sender.AddressLine2 | String | 50 | Sender address line 2 |
Sender.PostCode | String | 50 | Sender post code |
Sender.City | String | 50 | Sender city |
Sender.Country | String | 50 | Sender country |
Recipient.Email | String | 50 | The recipient's email address. Multiple email addresses may be added. |
Recipient.PhoneNumber | String | 50 | The recipient's phone number. Multiple phone numbers may be added. |
ContainerId | String | 10 | Unique identifier for the container. Created when container is created in the system. |
Ssccid | String | 50 | Serial shipping container code |
InternalTrackingNumber | String | 50 | Unique identifier of the container within the warehouse |
ContainerVolume | Decimal | 18,3 | Volume of the shipment container in cubic decimeters |
ContainerWeight | Decimal | 18,6 | Volume of the shipment container in kilograms |
ContainerType | String | 50 | Name of the type of shipment container used |
OrderId | String | 50 | Unique identifier for the order |
OrderLineId | Integer | 32-bit | Unique identifier for the order line |
ProductId | String | 50 | Unique identifier for the product |
Quantity | Decimal | 18,3 | The actual quantity that was picked, may differ from the quantity requested in the pick list if there was insufficient inventory. |
BatchId | String | 50 | Unique identifier for the product batch |
PicklistId | String | 50 | Unique identifier for the pick list |
OrderTypeId | Integer | 32-bit | Unique identifier for the order type |
UserName | String | 50 | Username of operator |
Examples
XML
<?xml version="1.0" encoding="utf-8"?>
<ContainerComplete xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<TransactionId>912211</TransactionId>
<TmsCustomerId>10617</TmsCustomerId>
<IncoTerm>1</IncoTerm>
<IncoTermText>FCA - 2040 Kløfta</IncoTermText>
<ShipmentId>110563</ShipmentId>
<PrinterName>ASP1-61</PrinterName>
<Delivery>
<Name>Kari Nordmann</Name>
<AddressLine1>Eksempelveien 42</AddressLine1>
<AddressLine2 />
<PostCode>1400</PostCode>
<City>SKI</City>
<Country>NORGE</Country>
</Delivery>
<Invoice>
<Name>Kari Nordmann</Name>
<AddressLine1>Dyrskuevegen 26</AddressLine1>
<AddressLine2 />
<PostCode>2040</PostCode>
<City>KLØFTA</City>
<Country>NORGE</Country>
<CompanyCode />
</Invoice>
<Sender>
<Name>Element Logic AS</Name>
<AddressLine1>Dyrskuevegen 26</AddressLine1>
<AddressLine2></AddressLine2>
<PostCode>2040</PostCode>
<City>KLØFTA</City>
<Country>NORGE</Country>
</Sender>
<Notification>
<Recipient>
<Email>kari.nordmann@example.com</Email>
<PhoneNumber>123456789</PhoneNumber>
</Recipient>
<Recipient>
<Email>ola.nordmann@example.com</Email>
<PhoneNumber>+98 76 54 32 10</PhoneNumber>
</Recipient>
</Notification>
<Container>
<ContainerId>11696</ContainerId>
<Ssccid>00370703790001107146</Ssccid>
<InternalTrackingNumber>95353535</InternalTrackingNumber>
<ContainerVolume>41.160</ContainerVolume>
<ContainerWeight>1.380</ContainerWeight>
<ContainerType>Kolli</ContainerType>
<Items>
<Item>
<OrderId>811811</OrderId>
<OrderLineId>1</OrderLineId>
<ProductId>1034192</ProductId>
<Quantity>6.000</Quantity>
<BatchId>0</BatchId>
<PicklistId>798115</PicklistId>
<OrderTypeId>1</OrderTypeId>
<UserName>adm</UserName>
</Item>
</Items>
</Container>
</ContainerComplete>