Purchase Orders
Discover how integration between NetSuite and HotWax Commerce automates Purchase Order synchronization, streamlines inventory receipt, and updates order statuses efficiently.
Last updated
Discover how integration between NetSuite and HotWax Commerce automates Purchase Order synchronization, streamlines inventory receipt, and updates order statuses efficiently.
Last updated
Accurate inventory availability in physical stores is important for omnichannel retail. For retailers using NetSuite as their ERP and HotWax Commerce as their Order Management System, integration is key to synchronizing Purchase Orders (POs) from NetSuite with HotWax Commerce. This synchronization enables store associates to receive and manage inventory using HotWax Commerce's user-friendly in-store inventory management tools.
When a PO is raised in NetSuite, it syncs with HotWax Commerce, allowing store associates to receive inventory through the Receiving App provided by HotWax Commerce.
Automate the synchronization of POs from NetSuite to HotWax Commerce.
Streamline the creation of Item Receipt records in HotWax Commerce when store associates receive inventory.
Automate the update of Purchase Order statuses from "Pending" to "Received" in NetSuite once items are received in HotWax Commerce.
The procurement process begins in the NetSuite ERP, where POs are generated to replenish inventory in physical stores.
A Map Reduce script initiates the synchronization process by running a Saved Search to identify POs with a "Pending" status in NetSuite. The script compiles the relevant PO data into a CSV file and places it in an SFTP location. This process runs at regular intervals, every 15 minutes, fetching only the latest pending POs. The script is designed to reduce data transfer and processing, maintaining efficient synchronization.
SuiteScript
Create a file of open purchase orders
SFTP Locations
A scheduled job within HotWax Commerce OMS monitors the SFTP location, periodically checking for new Purchase Order CSV files. The job uses the robust APIs provided by HotWax Commerce's Export/Import tools to import these Purchase Orders.
Job in HotWax Commerce
1
Purchase Order Internal ID
External ID
2
Item
SKU
3
Quantity
Qty
4
Location
Facility
5
Expected Receipt Date
Estimated Delivery Date
1
Line ID
Order Item External ID
Once POs are synchronized, store associates use the HotWax Commerce's Receiving App to receive new inventory. The app's interface simplifies the receiving process, allowing associates to manage inventory with ease, even with minimal training.
After store associates receive POs from app, Item Receipt records are created in HotWax Commerce. These records update inventory counts, making the newly received stock available for sale on eCommerce platforms.
A scheduled job in the HotWax Commerce Integration Platform exports Item Receipt records created in the system back to NetSuite. Each Item Receipt is linked to its corresponding PO, enabling accurate reconciliation and processing. The job runs at defined intervals, based on the retailer's requirements, and compiles Item Receipt data into a JSON file with all relevant details.
Internal location where HotWax places CSV to convert it to NetSuite format.
SFTP Locations
To facilitate the subsequent processing of this data, the JSON file is securely placed in an SFTP location, making it accessible for NetSuite.
SFTP Locations
A scheduled script in NetSuite retrieves JSON files with Item Receipt data from the SFTP location. The script processes each record, creates new Item Receipt records, and updates inventory counts in NetSuite. Since NetSuite's CSV import task does not support Item Receipt records, the N/record module is used to import the data using JSON files.
After Item Receipt records are created, the status of the corresponding POs in NetSuite is automatically updated from "Pending" to "Received." This automated status change enables accurate tracking of received inventory and streamlines purchase order management.
SuiteScript
The HC_SC_ImportPurchaseOrderReceipts SuiteScript also generates a CSV file highlighting erroneous records found during processing and uploads the file to the SFTP server. Simultaneously, an email alert is automatically triggered to designated personnel, helping them quickly pinpoint the source of the issue and accelerating troubleshooting.