In order to link a bundle product with the options, all the products should be imported to Magento first.
Here are the minimum required fields to import a new product:
For more convenience, please, feel free to add product attributes such as name, price, description, etc.:
Here is an example of the import file:
Then, to link bundle products with simple options, the following fields will be needed:
Root Entity
Bundle Option Entity
Bundle Option Value Entity
Bundle Selection
Here are some tips on how to locate the values for some of the fields in the import file:
1) catalog_product_bundle_option.option_id
This value van be located in the DB table 'catalog_product_bundle_option'. Find the last value and increase it by 1 to insert in the import file.
2) catalog_product_bundle_option.parent_id
ID of the bundle product, which can be located in Catalog > Products grid.
3) catalog_product_bundle_option_value.value_id
This value should be checked in the 'catalog_product_bundle_option_value' DB table.
4) catalog_product_bundle_option_value.option_id
The same id as in the 'catalog_product_bundle_option_value' field.
5) catalog_product_bundle_option_value.store_id
"0" for all the store views. IDs of the separate store views can be located in Stores > All Stores > needed store view's URL.
6) catalog_product_bundle_option_value.parent_product_id
ID of the bundle product, which can be located in Catalog > Products grid.
7) catalog_product_bundle_selection.selection_id
The value can be checked in the 'catalog_product_bundle_selection' DB table. Find the last existing value and increase it by 1 to insert in the import file.
8) catalog_product_bundle_selection.option_id
The same id as in the 'catalog_product_bundle_option_value' field.
9) catalog_product_bundle_selection.parent_product_id
ID of the bundle product, which can be located in Catalog > Products grid.
10) catalog_product_bundle_selection.product_id
ID of the simple product, which can be located in Catalog > Products grid. If the 'SKU to Product ID' modifier is enabled for this field, you may use the product's SKU in the import file.