It is possible to populate a KitItems InventoryVariantId Field when importing a new product through WSI?
I can successfully create a product that is a kit with group options. My group options just reference existing products and would really like to be able to reference them at point of kit creation.
Below is a snippet from my XML package.
Code:
<Kit AutoCleanup="1"> <!-- only used if IsAKit is 1 -->
<KitGroup>
<Name>Testing Product</Name>
<Description>Testing Product one Description</Description>
<DisplayOrder>1</DisplayOrder>
<KitGroupTypeID>2</KitGroupTypeID>
<IsRequired>1</IsRequired>
<IsReadOnly>1</IsReadOnly>
<KitItem>
<Name>Testing Product</Name>
<Description></Description>
<PriceDelta>0.00</PriceDelta>
<IsDefault>1</IsDefault>
<DisplayOrder>1</DisplayOrder>
<TextOptionMaxLength></TextOptionMaxLength>
<TextOptionWidth></TextOptionWidth>
<TextOptionHeight></TextOptionHeight>
<WeightDelta></WeightDelta>
<InventoryQuantityDelta></InventoryQuantityDelta>
<InventoryVariantID>6</InventoryVariantID
</KitItem>
</KitGroup>
</Kit>