Adding a static kit to a static kit

Advanced Orders In this case you want to place a static kit within another static kit, and one or both of these kits already exist. If none of the static kits exist, see Creating static kits within static kits.

To add a static kit to a nested static kit structure:

  1. If one of the kits does not yet exist, create the static kit.
  2. Adds a row to the CATENTREL table describing the relationship between the parent and child kit. In the new row, insert the parent kit catentry id to the catentry_id_parent column and the child kit id to the catentry_id_child column. Your SQL statement will be similar to the following:
    insert into CATENTREL (catentry_id_parent, catreltype_id, catentry_id_child, sequence, quantity) values (catentry_id of the parent kit, 'PACKAGE_COMPONENT', catentry_id of the child kit, display order sequence, number of children associated with the parent kit) For example, insert into CATENTREL (catentry_id_parent, catreltype_id, catentry_id_child, sequence, quantity) values (1000000001,'PACKAGE_COMPONENT', 1000000002, 0,1)
  3. Add SKUs the kit, if you have not already done so.
  4. Add prices the kit, if you have not already done so.. If necessary, modify the prices of the existing kits to reflect the addition of the new static kit.

Feedback