1. Create a new item. Give it a name and a sku and hit Save.
2. Click Options and Variants. Enter "Size" beside Option and "S, M, L" beside Choices and hit Add.
3. Click the Edit Option Icon (Not the Manage Variants button).
4. Enter S, M, and L for the Sku boxes 1, 2 and 3. Leave everything else blank and hit Save and Close.
5. Click Product Details, then under Inventory Tracking, choose "Track Variants" and hit Save.
6. Click Options and Variants, then the Manage Variants button.
7. WITHOUT modifying anything else on this page, enter "1" for the In Stock box on Size S only. Leave M and L at 0 then hit Save.
8. Take note of the ProductId for this item in the address bar of your browser.
9. Open SQL Server Management Studio and query the "ac_ProductVariants" table (xxxx = the ProductId for the item)
Code: Select all
SELECT * FROM dbo.ac_ProductVariants WHERE ProductId = xxxx
In my installation of 7.0.5 only one record is returned. This is causing a problem in an interface from Stone Edge Software. Their interface expects three records in this table for it to work correctly, and they told me it should be fixed in 7.0.6. Before I do an upgrade I wanted to make sure this was indeed true.
Thank you very much for your help!