Overview
You are unable to create an ASN, encountering the following error:
Error publishing this ASN. Please try again.
This issue may happen when one of the items added to the ASN is not configured correctly on the Warehouse server.
Solution
- Open Developer Tools in your browser by pressing F12.
- Try submitting the same ASN to the warehouse again.
- From the developer tools, open the Network tab and search for the asn element.
- Check if there any errors related to SKUs under the Response tab.
For example:
PROCESS: SKU P001111 not found. SKU values are case-sensitive.
Please check the SKU and try again. - Next, you can:
- Contact the Warehouse to check why the affected product is not found on their side.
- Remove the faulty product from the ASN by clicking on the x button and try sending the ASN to the warehouse again.
- If you still cannot save the ASN after checking with the warehouse, submit a request to Symphony Support, providing the ID of the affected ASN.
<supportagent>
Agents can also check if the warehouse mapping is correctly implemented on our side for the items added to the ASN.
- From Symphony Manage, navigate to Fulfillment > Receiving (ASN).
- Find the corresponding ASN and open it.
- Check the Symphony ID values for the products added to the ASN.
- Connect to the database and run the following query for the products added to the ASN.
Note: Remove the P prefix from the product/Symphony IDs.select p.id,p.productClusterId,p.created,p.name,p.vendorSKUId,p.styleNumber,
p.stockKeepingUnitId,w.poolName, w.onHandQty, ws.warehouseSkuId
from Product p, WarehousePoolInventory w, WarehouseSkuMapping ws
where w.stockKeepingUnitId=p.stockKeepingUnitId
and p.stockKeepingUnitId=ws.stockKeepingUnitId
and w.poolName='DEFAULT' and p.Id in
('<product IDs>') order by p.vendorSKUId,ws.warehouseSkuId; - Check if the vendorSKUIds are the same as warehouseSKUIds for each product.
- If they are different, elevate this issue to the PS team to correct the warehouse mapping.
- If they are the same, check if there are any errors in Graylogs for the affected ASN.
If there are no specific errors pointing to an infrastructure/ database issue on the Symphony side, there must be an issue with one of the products on the warehouse side.
- If they are different, elevate this issue to the PS team to correct the warehouse mapping.
</supportagent>
Comments
0 comments
Article is closed for comments.