Question
I’ve imported some orders and want to update the Description on the order’s Detail page. Can this be done after the fact? From where does this data get pulled?
Answer
Important: You should only undertake this process in rare instances.
Although labeled as Description, this is the inventory item’s name. The order’s Detail page pulls this Description data from the ORD_OrderDetail table. After an order is created, the inventory item’s name is pulled in and saved. This is because if the inventory item’s data changed, the older orders wouldn’t be affected.
To change an order’s Description, you’ll have to modify the ORD_OrderDetail table.
Admin: Corporate Admin
Page: Tools > Developer Tools > Data Editor
URL: [CLIENTID].corpadmin.directscale.com/Corporate/Admin/SQLEditor
Permission: EditSqlEditorAdvanced()
-
Under the SQL tab, use the following query:
UPDATE ORD_OrderDetail SET ProductName = 'Some New Description' WHERE OrderNumber = <Order Number HERE> AND SkuID = <The ID of the Item>
-
SET ProductName = 'Some New Description'
- Add your new inventory item name for the order. -
WHERE OrderNumber = <Order Number HERE>
- Add the order number here. You can find the order number on the order’s Detail page. -
AND SkuID = <The ID of the Item>
- Narrow the results by the Item ID. You can find an item’s ID on the item’s Detail configuration page.
-
-
Click Run.
Comments
Please sign in to leave a comment.