Fulfillment
Discover Fulfillment reports provided by HotWax Commerce
Last updated
Discover Fulfillment reports provided by HotWax Commerce
Last updated
It is common for fulfillment locations to reject online orders due to various factors such as inventory discrepancies or fulfillment issues. However, minimizing these rejections holds importance for retailers striving to uphold customer satisfaction and streamline operations. HotWax Commerce recognizes this need and offers a report on rejected orders from multi-fulfillment locations.
This report serves as a crucial tool for retailers in their efforts to reduce rejection rates. By providing insights into rejection occurrences—including timing, locations, SKUs, and order IDs—it empowers users to identify patterns and root causes behind rejections. Armed with this information, retailers can take measures to optimize inventory management, streamline fulfillment processes, and enhance staff training.
HotWax Commerce's rejection report enables users to make decisions aimed at improving overall operational efficiency. By understanding which items are rejected more frequently and in which locations, retailers can implement strategies to minimize rejections and ensure accurate, timely order fulfillment. Ultimately, this proactive approach not only enhances customer satisfaction but also strengthens the retailer's competitive edge in the market.
Item | Item Details | HC Entity |
---|---|---|
Data Selection: The SQL query begins by selecting specific data from various tables relevant to generating a Rejected Order Items Report. These tables include information about orders, order items, order statuses, and product details.
Joining Relevant Tables: To compile a comprehensive dataset, the SQL query joins relevant tables together based on common fields such as order IDs and product IDs. By doing so, it gathers interconnected information about rejected order items, including order details, item descriptions, rejection reasons, and external IDs.
Selecting Necessary Information: From the joined tables, the query selects specific columns relevant to the report's objective. These columns typically include order IDs, rejection dates, SKUs (product identifiers), item descriptions, rejection reasons, and external IDs. This selection provides essential details required for analyzing and understanding rejected order items.
Grouping Data: Subsequently, the query groups the selected data based on certain criteria such as order ID, rejection date, SKU, item description, rejection reason, and external ID. Grouping the data helps in summarizing and organizing it for further analysis, facilitating insights into patterns and trends related to rejected order items.
Counting Distinct Orders: Within each group, the query counts the number of distinct order IDs. This count provides insights into the volume of unique orders that had items rejected, helping understand the overall impact of rejection on order fulfillment.
Calculating Date: Additionally, the query includes a calculation to determine the date of the rejected order items. It may derive the first day of the week for each rejection date, facilitating grouping of rejections by week and enabling a broader perspective on rejection trends over time.
The Unreconciled Report helps retailers identify orders that have been brokered but not yet reconciled with their ERP or WMS systems. This report is crucial for maintaining operational efficiency and ensuring timely fulfillment of orders. By highlighting these unreconciled orders, retailers can take corrective actions to prevent data discrepancies.
The report provides detailed information, including order IDs, item descriptions, UPCs, brokered dates and times, and cut-off times, enabling retailers to address discrepancies promptly and maintain a smooth workflow. The focus is on orders brokered to facilities like distribution centers that have yet to be confirmed by the ERP or WMS, ensuring that all orders are accurately tracked and processed.
Data Selection: The query begins by selecting specific data from various tables that contain information about orders, order items, facilities, and product details.
Defining Brokered Criteria: The primary focus is on brokered order items that have not been reconciled. Criteria are established to filter data and include only those records where the change_reason_enum_id
indicates brokering and the brokering date is more recent than the specified cutoff date.
Joining Relevant Tables: To compile a comprehensive dataset, the SQL query joins several tables based on common fields such as ORDER_ID
and ORDER_ITEM_SEQ_ID
. This ensures all necessary information is captured.
Selecting Necessary Information: The query selects specific columns from the joined tables that are relevant to the report’s objective, such as internal order IDs, Shopify order IDs, facility locations, UPCs, item descriptions, brokering dates, and times, as well as cutoff statuses and product store IDs.
Filtering Data: The query includes filters to select records from a specific product store and only considers sales orders that have been approved. It also ensures that the brokering date is more recent than a specified date and that the facility type is a distribution center.
Rejection reason reports provide valuable insights into rejection rates and reasons across different facilities. These reports outline the number of rejections at each facility along with the underlying reasons behind them. This allows retailers to pinpoint facilities with higher rejection rates and take targeted actions to enhance their performance. For example, if a store frequently experiences rejections due to items being out of stock, conducting cycle counts can help reconcile discrepancies between the system's available inventory and the physical stock in the store. Moreover, by identifying facilities where damaged items are more prevalent, retailers can streamline operations to mitigate such occurrences. Ultimately, the aim of these reports is to pinpoint the location and frequency of rejections and implement measures to minimize them, thereby optimizing overall store performance.
Data Selection: The SQL query is designed to gather information for generating a report on Store Rejections with Reasons. It selects specific data from various tables, including details about orders, order items, order statuses, and product information. These tables store interconnected data related to store orders and inventory.
Joining Relevant Tables: To compile a comprehensive dataset, the SQL query joins relevant tables together based on common fields such as order IDs, product IDs, and facility IDs. By joining these tables, it gathers detailed information about rejected order items, including order details, item descriptions, rejection reasons, and facility locations.
Selecting Necessary Information: From the joined tables, the query selects specific columns relevant to the report's objective. These columns typically include the location (store), rejection reasons, and the count of Shopify order IDs associated with each rejection reason. This selection provides essential details required for analyzing and understanding store rejections.
Grouping Data: Subsequently, the query groups the selected data based on certain criteria such as location (store) and rejection reason. Grouping the data allows for summarization and organization, facilitating insights into common rejection reasons across different store locations.
Counting Rejected Orders: Within each group, the query counts the number of distinct Shopify order IDs. This count provides insights into the volume of rejected orders associated with each rejection reason and location, aiding in understanding the frequency and impact of rejections.
Sorting and Limiting Results: Finally, the query sorts the results based on the count of Shopify order IDs in descending order. This arrangement helps prioritize the most significant rejection reasons. Additionally, it limits the output to a maximum of 5000 records, ensuring manageable data for analysis.
Merchants use third-party services to ship orders to customers' addresses. Orders are picked, packed, and handed to third-party logistics (3PL) companies like FedEx and UPS. All shipments dispatched have their unique tracking ID. This tracking ID is provided by the 3PLs and helps customers keep track of their orders. Because multiple shipments are sent out daily, merchants require a centralized view of order shipment details. This Shopify report helps merchants quickly identify an order's tracking ID, shipping address, and dispatch location. The Shipment Tracking Report shows the daily shipment details for each order. Using this report, merchants can quickly resolve questions related to order tracking by finding the tracking ID and the shipping address for the order.
Data Selection: The SQL query is structured to extract specific data for generating a Shipment Tracking Report. It selects information from various tables, and containing details about orders, order items, shipments, shipment statuses, and shipping addresses.
Defining Shipment Criteria: The primary objective of the report is to track shipments. Therefore, the query defines criteria to filter the data, including only shipments that have been marked as shipped (STATUS_ID = 'SHIPMENT_SHIPPED'
) and associated order items that are completed (STATUS_ID = 'ITEM_COMPLETED'
).
Joining Relevant Tables: To gather comprehensive shipment data, the SQL query joins several tables together based on common fields such as order IDs, order item sequence IDs, and shipment IDs. By doing so, it collects interconnected information about shipments, order items, shipment statuses, and shipping addresses.
Selecting Necessary Information: From the joined tables, the query selects specific columns relevant to the report's objective. These columns typically include the Shopify order ID, tracking number, shipping method, shipping location, ship-to address, and the number of units shipped. This selection provides essential details required for tracking and analyzing shipments.
Grouping Data: Subsequently, the query groups the selected data based on certain criteria such as the tracking number. Grouping the data allows for summarization and organization, facilitating insights into the status and progress of each shipment.
Counting Units Shipped: Within each group, the query counts the number of units shipped. This count provides insights into the volume of items included in each shipment, aiding in understanding shipment sizes and fulfillment metrics.
Sorting and Limiting Results: Finally, the query sorts the results based on the Shopify order ID and limits the output to a maximum of 10 records. This arrangement helps prioritize and present the most relevant shipment tracking information while ensuring a manageable dataset for review.
The Shopify Fulfillment Status Report offers retailers valuable insights into their order processing. It highlights the number of orders fulfilled and those still pending, aiding in the assessment of operational efficiency. Retailers can leverage reports from Hotwax to access historical data and current statistics, enabling them to track performance over time and promptly address any issues. It serves as a progress report for order fulfillment, ensuring smooth operations.
Data Selection: The SQL query is crafted to gather data for generating a Shopify Fulfillment Status Since Last Day Pie Chart. It selects specific information from various tables, including details about orders, order items, order fulfillment history, shipments, statuses, products, and facilities.
Defining Criteria: The primary objective of the report is to analyze the fulfillment status of Shopify orders within the last day. To achieve this, the query defines criteria to filter the data, including only orders of type "SALES_ORDER" and fulfillment history associated with shipments. Additionally, it focuses on orders where the Shopify fulfillment status is either 'pending' or has been updated within the last day.
Joining Relevant Tables: To compile a comprehensive dataset, the SQL query joins several tables together based on common fields such as order IDs, order item sequence IDs, shipment IDs, and status IDs. By doing so, it gathers interconnected information about order fulfillment, order items, shipments, statuses, products, and facilities.
Selecting Necessary Information: From the joined tables, the query selects specific columns relevant to the report's objective. These columns typically include the Shopify fulfillment status and the count of orders corresponding to each fulfillment status. This selection provides essential details required for visualizing the distribution of fulfillment statuses in the pie chart.
Grouping Data: Subsequently, the query groups the selected data based on the Shopify fulfillment status. Grouping the data allows for summarization and organization, facilitating insights into the distribution of pending and successfully fulfilled orders.
Sorting and Limiting Results: Finally, the query sorts the results based on the count of orders for each fulfillment status in descending order. This arrangement helps prioritize and present the most relevant fulfillment status information. Additionally, it limits the output to a maximum of 100 records, ensuring a manageable dataset for visualization in the pie chart.
Merchants measure their stores’ omnichannel order fulfillment rates and want a clear, accurate view of their daily shipping performance. Therefore, merchants seek a detailed storewide report that displays every store’s daily shipping performance. The Daily Store Shipment Performance Report shows the number of daily shipped orders for each store, giving an overview of the store’s daily performance. This performance report also yields valuable insight into the most active and least active stores within a set timeframe. With this data, retailers can work with underperforming stores to understand the reason for low activity, identify the cause of underperformance, and resolve the issue. Similarly, the retailer wants to see product-level shipping performance. The report also includes product-level performance. This information helps retailers understand a newly launched product's performance in a given area or region. Retailers can plan their inventory accordingly after knowing which products perform best at a given store.
Data Selection: The SQL query is intended to generate a Daily Store Shipment Performance Report. It begins by selecting specific data from various tables, including order items, order headers, order facility changes, order statuses, facilities, product features, products, and product associations.
Defining Criteria: The primary objective of the report is to analyze the shipment performance of retail stores on a daily basis. To achieve this, the query sets criteria to filter the data. It focuses on orders completed on the previous day (current_date() - INTERVAL 1 DAY), marked with a status ID of 'ITEM_COMPLETED', and involving a change reason enum ID of 'BROKERED'. Additionally, it specifically targets retail stores by filtering facility types.
Joining Relevant Tables: To compile a comprehensive dataset, the SQL query joins multiple tables together based on common fields such as order IDs, order item sequence IDs, facility IDs, product IDs, and status date. By doing so, it gathers interconnected information about order items, order headers, order facility changes, order statuses, facilities, product features, products, and product associations.
Selecting Necessary Information: From the joined tables, the query selects specific columns relevant to the report's objective. These columns typically include store IDs, SKUs (product identifiers), styles, colors, sizes, and the number of units shipped. This selection provides essential details required for assessing store shipment performance.
Grouping Data: Subsequently, the query groups the selected data based on store IDs, colors, sizes, and product IDs. Grouping the data allows for summarization and organization, facilitating insights into the distribution of shipped units across different products and attributes within each store.
Sorting and Limiting Results: Finally, the query limits the output to a maximum of 1000 records, ensuring a manageable dataset for analysis. This step ensures that the report focuses on the most relevant information while maintaining a reasonable size for practical use.
The Store Daily Orders Fulfillment Report empowers retailers to monitor the efficiency and effectiveness of their store operations. By tracking the daily number of orders fulfilled per store, retailers can identify trends and patterns, facilitating individual store performance assessments. This insight aids in recognizing top-performing stores and pinpointing areas for improvement in underperforming ones. With Store Daily Orders Fulfillment Reports, retailers can optimize store operations, enhance customer satisfaction, and ultimately drive revenue growth.
Data Selection: The SQL query is designed to generate a Store Daily Order Fulfillment Report. It begins by selecting specific data from various tables, including order facility changes, order statuses, facilities, order headers, and order items.
Defining Criteria: The primary objective of the report is to analyze the daily order fulfillment performance of retail stores. To achieve this, the query sets criteria to filter the data. It focuses on orders completed on the previous day, marked with a status ID of 'ITEM_COMPLETED', and involving a change reason enum ID of 'BROKERED'. Additionally, it specifically targets retail stores by filtering facility types and a particular product store ID.
Joining Relevant Tables: To compile a comprehensive dataset, the SQL query joins multiple tables together based on common fields such as order IDs, order item sequence IDs, facility IDs, and status dates. By doing so, it gathers interconnected information about order facility changes, order statuses, facilities, order headers, and order items.
Grouping and Summarizing Data: The query groups the selected data based on store IDs (facility IDs) and calculates the sum of quantities of order items fulfilled for each store. Grouping and summarizing the data in this manner allows for a clear overview of the total quantity of items fulfilled by each store.
Sorting and Limiting Results: Finally, the query sorts the results based on the sum of quantities in descending order and limits the output to a maximum of 100 records. This step ensures that the report focuses on the stores with the highest order fulfillment quantities, providing insights into their performance while maintaining a manageable dataset for analysis.
In the era of eCommerce growth, retail warehousing has become increasingly crucial to modern businesses. A fully functional warehouse gives the best output because of its low inventory carrying cost. As a result, the warehouse is responsible for fulfilling the majority of orders placed.
As warehouse operations are incredibly massive, there is always a possibility that some brokered orders can get misplaced or left unattended during the process. For merchants, evaluating warehouse performance and order fulfillment rates becomes crucial to success.
The Daily Warehouse Fulfillment Report provides all the orders brokered at the warehouse but not fulfilled yet. The report shows all the daily shipped and pending orders at a warehouse.
After identifying all the pending orders within this report, retailers can work to clear the backlog. Ultimately, this report helps to analyze the warehouse's fill rate. And in the case of multiple warehouses, it helps to compare their performance and give retailers actionable insights to improve their omnichannel order fulfillment strategy.
Vice President of Retail, Warehouse Fulfillment team
Omnichannel retailers use stores as their order fulfillment locations. Fulfillment centers help merchants meet customer expectations of faster delivery. Merchants often operate multiple stores in various locations within their operational area so they need a reliable way to measure their fulfillment performance.
Many reasons contribute to stores delaying and rejecting orders, including low operational strength and inventory shortages. Customer order cancellations are also common. Tracking store fulfillment performance enables retailers to identify and resolve these order fulfillment issues.
Likewise, merchants prefer to keep a company-wide order fulfillment goal for daily processed, shipped, rejected, and canceled orders. Any facility performing below the set goal raises a concern for merchants and puts their focus on improving the performance of these facilities.
The Store Dashboard shows the storewide data where the orders were brokered, rejected, canceled, and then fulfilled in a day.
The report shows the percentage of shipped, processed, and canceled orders of the stores. Retailers can compare the actual fulfillment performance against the set goal to assess the performance of each store.
Head of eCommerce, Head of Stores, Vice President of Retail
Insider reports that 39% of consumers prefer using BOPIS when placing online orders because they get their orders faster. During their BOPIS journey, customers also expect prompt notifications from the brand on the status of their orders.
When customers can’t come to the store to pick up their orders, store managers need a detailed report on the unpicked BOPIS orders.
The Daily BOPIS Orders Report provides cumulative details of all the BOPIS orders of the last 30 days. This Shopify report also shows the status of these BOPIS orders if orders are picked up, canceled, or not picked up.
With this detailed report, store managers also look for long pending BOPIS orders. These orders keep the inventory blocked which can be used to fulfill other orders. With the knowledge of pending BOPIS orders, merchants can cancel all long-pending orders and use the inventory for new orders.
The report is essential to improve the BOPIS order fulfillment rate. Again, the fewer the unpicked orders, the better the order fill rate. Additionally, the problem diagnosis with the report helps retailers to clear the challenges in the omnichannel order fulfillment cycle.
Head of eCommerce, Head of Stores, Vice President of Retail
According to the State of Shipping Report, 62% of consumers expect their orders to arrive in less than three business days. To help expedite shipping, many brands have started implementing same-day/next-day delivery. That sounds like an easy fix, right?
Well, sometimes omnichannel order fulfillment teams can't fulfill same-day/next-day orders due to inventory discrepancies or other reasons. Orders go unfulfilled, which leads to increased order cancellations, poor customer service, and broken promises.
To provide a better customer experience, merchants have dedicated Customer Success Teams. The Customer Success Team wants to be on top of unfulfilled expedited delivery orders and continuously work on decreasing the order cancellation rate.
To effectively manage unfulfilled expedited orders, Customer Success Teams need a Daily Unfulfilled Expedited Orders Report. This report provides a granular view of all the unfulfilled same-day/next-day delivery orders. It also helps identify the order’s last brokered location with brokering time.
Furthermore, the report will help Customer Success Teams to evaluate the efficiency of their expedited shipping fulfillment process. Due to the large volume of expedited orders handled by an OMS daily, merchants prefer to have a daily report of all unfulfilled orders.
Head of eCommerce, Vice President of Retail
Merchants set benchmarks for fulfilling orders. Generally, merchants intend to complete order fulfillment within a seven-day maximum time frame. If any order’s fulfillment takes more than seven days, it draws a merchant’s attention.
To avoid order delays, merchants prefer to check all the pending orders at the facilities and alert fulfillment locations to speed up order fulfillment.
The Daily Unfulfilled Orders Report provides the data for all unfulfilled orders at different fulfillment locations. These can be standard, same-day/next-day delivery or store pick-up orders. The report also shows the last brokered facility and order brokered time which helps retailers analyze unfulfilled orders and mitigate challenges in the omnichannel order fulfillment pipeline.
Head of eCommerce, Vice President of Retail
Item | Item Details | HC Entity |
---|---|---|
Item | Item Details | HC Entity |
---|---|---|
Item | Item Details | HC Entity |
---|---|---|
Item | Item Details | HC Entity |
---|---|---|
Item | Item Details | HC Entity |
---|---|---|
Item | Item Details |
---|---|
Item | Item Details |
---|---|
Item | Item Details |
---|---|
Item | Item Details |
---|---|
Item | Item Details |
---|---|
Shopify Order ID
Identifies the order within the Shopify platform
OrderHeader.ORDER_NAME
Location
Indicates the location of the order fulfillment
OrderFacilityChange.FROM_FACILITY_ID
HC Order ID
HotWax Commerce Order ID for internal tracking
OrderHeader.ORDER_ID
Style
Specifies the style or type of the product
OrderItem.ITEM_DESCRIPTION
Demand
Reflects the demand or quantity ordered
OrderItem.QUANTITY
SKU
Stock Keeping Unit for inventory tracking
GoodIdentification.ID_VALUE where GoodIdentification.GOOD_IDENTIFICATION_TYPE_ID is set to ‘UPCA’
Product Name
Name of the product ordered
Product.PRODUCT_NAME
ATP
Indicates the quantity of the product available for shipment
ProductFacility.LAST_INVENTORY_COUNT
Safety Stock
Quantity of stock kept in reserve to meet unexpected demand
ProductFacility.MINIMUM_STOCK
Rejected Datetime
A timestamp indicating when the rejection occurred
OrderFacilityChange.CHANGE_DATETIME
Reason
Specifies the reason for rejection
OrderFacilityChange.CHANGE_REASON_ENUM_ID
Comments
Additional comments or notes regarding the rejection
OrderFacilityChange.COMMENTS
Item
Item Details
HC Entity
HC Order ID
HotWax Commerce Order ID for internal tracking
OrderHeader.ORDER_ID
Shopify Order ID
Identifies the order within the Shopify platform
OrderHeader.ORDER_NAME
Location
The location where the order was placed
Facility.EXTERNAL_ID
UPC
The unique product code
GoodIdentification.ID_VALUE where GoodIdentification.GOOD_IDENTIFICATION_TYPE_ID is set to 'SHOPIFY_PROD_SKU'
Item description
The description of the item.
GOOD_IDENTIFICATION GI
Brokered date
The date when the item was brokered.
OFC.CHANGE_DATETIME
Brokered time
The time when the item was brokered.
OFC.CHANGE_DATETIME
WMI Sent date
OFC.CHANGE_DATETIME
WMI sent time
OFC.CHANGE_DATETIME
Cut off
The cutoff status based on the brokering date and time.
OFC.CHANGE_DATETIME
Location
The physical location or facility from which an order item was rejected.
OrderFacilityChange.FROM_FACILITY_ID
Reason
The reason for the rejection of an order item.
OrderFacilityChange.CHANGE_REASON_ENUM_ID
COUNT(Shopify Order ID)
The count of Shopify order IDs associated with each rejection reason.
OrderHeader.ORDER_NAME
Shopify Id
The ID of Order in Shopify.
OrderHeader.ORDER_NAME
Tracking Number
The tracking number of the shipped order.
ShipmentPackageRouteSegment.TRACKING_CODE
Shipping Method
The shipping method used for the order shipment.
OrderItemShipGroup.SHIPMENT_METHOD_TYPE_ID
Shipping Location
The code of the fulfillment location.
OrderItemShipGroup.FACILITY_ID
Ship To Address
The shipping address of the customer. Concatenation (Appended string of) PostalAddress.ADDRESS1, PostalAddress.STATE_PROVINCE_GEO_ID and PostalAddress.POSTAL_CODE)
Concatenation (Appended string of) PostalAddress.ADDRESS1, PostalAddress.STATE_PROVINCE_GEO_ID and PostalAddress.POSTAL_CODE)
UNITS SHIPPED
The number of units shipped in order.
Total count of OrderItem.ORDER_ITEM_SEQ_ID
Hotwax Order ID
Unique identifier for the order in Hotwax system
OrderFulfillmentHistory.ORDER_ID
Shopify Order Name
Name or identifier associated with the order in Shopify system
OrderHeader.ORDER_NAME
SKU
Stock Keeping Unit, a unique code assigned to each product
Product.INTERNAL_NAME
Facility Name
Name of the facility where inventory is stored
Facility.FACILITY_NAME
Item Status
Status of the item (e.g., available, out of stock, backordered)
StatusItem.DESCRIPTION
Hotwax Shipment Status
Status of the shipment in Hotwax
StatusItem.DESCRIPTION
Hotwax Fulfillment Time
Time taken to fulfill the order in Hotwax
ShipmentStatus.STATUS_DATETIME
Created Time
Time when the order was created
OrderFulfillmentHistory.CREATED_DATE
Shopify Fulfillment ID
Unique identifier for the fulfillment process in Shopify system
OrderFulfillmentHistory.EXTERNAL_FULFILLMENT_ID
Shopify Fulfillment Status
Status of the fulfillment process in Shopify system
Set to ‘pending’ if OrderFulfillmentHistory.EXTERNAL_FULFILLMENT_ID is set to 'NA' else ‘success’
Shopify Fulfillment Entry Time
Time when the fulfillment process was initiated in the Shopify system
OrderFulfillmentHistory.LAST_UPDATED_STAMP
Store
The fulfillment store location of the retailer
OrderFacilityChange.FACILITY_ID
UPC/SKU
The unique product code
GoodIdentification.ID_VALUE where GoodIdentification.GOOD_IDENTIFICATION_TYPE_ID is set to 'SHOPIFY_PROD_SKU'
Style
The category of the product/item
Product.PRODUCT_NAME
Color
The color of the product
ProductFacility.DESCRIPTION when ProductFeature.PRODUCT_FEATURE_TYPE_ID is set to 'COLOR'
Size
The size of the product
ProductFacility.DESCRIPTION when ProductFeature.PRODUCT_FEATURE_TYPE_ID is set to ‘SIZE'
Units
The units shipped of the product
Total sum of OrderItem.QUANTITY
Store
Store Name
OrderFacilityChange.FACILITY_ID
Count
Count of orders fulfilled in a store
Total count of OrderFacilityChange.ORDER_ITEM_SEQ_ID where facilities are of type ‘RETAIL_STORE’
Quantity
Total items/units fulfilled by a store
Total sum of OrderItem.QUANTITY grouped by facilities that are ‘STORE’
Brand
The brand of the ordered product
Warehouse
The warehouse of the order
HC_Order_ID
The ID of order in HotWax Commerce
HC_Order_Line_ID
The ID of order line items in HotWax Commerce
UPC/SKU
The unique product code
Item Description
The style, color, size of the item
Shipping Preference
The preference of shipping selected by the customer
Order Date
The date when the customer placed the order
Order Time
The time when the customer placed the order
Brokered Date
The date when the order is brokered to a fulfillment location
Brokering Time
The time when the order was brokered
Order ID
The ID of order in HotWax Commerce
Shopify ID
The ID of order in Shopify
Import Date
The date when the order was imported
Confirm Date
The date when the order found inventory
Item Description
The style, color, size of the item
UPC/SKU
The unique product code
Customer Name
The name of the customer
Status
The status of order pick up
Store
The store which customer chose
Brokered Date
The date when the order is brokered
Pickup Date
The date when the order is picked up
Canceled Date
The date when the order was canceled
Shipping Method
The Shipping method by which order is
Order ID
The ID of order in HotWax Commerce
Shopify ID
The ID of order in Shopify
Import Date
The date when the order was imported
Confirm Date
The date when the order found inventory
Item Description
The style, color, size of the item
UPC/SKU
The unique product code
Customer Name
The name of the customer
Status
The status of order pick up
Store
The store which customer chose
Brokered Date
The date when the order is brokered
Pickup Date
The date when the order is picked up
Canceled Date
The date when the order was canceled
Shipping Method
The Shipping method by which order is
Order ID
The ID of order in HotWax Commerce
Shopify ID
The ID of order in Shopify
Order Date
The date when the customer placed the order
Brokered Date
The date when the order is brokered to a fulfillment location
Brokering Time
The time when the order was brokered
Shipping
The preference of shipping selected by the customer
Customer Name
The name of the customer
UPC/SKU
The unique product code
Style
The category of the product/item
Color
The color of the product
Size
The size of the product
Store ID
The last brokered location of the order
HC_Order_ID
The ID of order in HotWax Commerce
Shopify ID
The ID of order in Shopify
Location
The location of the order
Item Description
The style, color, size of the item
Style
The category of the product/item
Color
The color of the item
Size
The size of the item
Brokered Date
The date when the order is brokered to a fulfillment location
Brokering Time
The time when the order was brokered