Hi
Thanks for the Reply.
As you said, to remove complete product partition of adgroup and insert the list ( chain list - root and child levels ) in one go, its fine
two more questions:
1. for example , if we have like this
A
/ \
B C
/ \
D E
once removed all partition , then i will update following tree
A
/ | \
B C F
then, "C" will have the same benchmark CTR,clicks, etc as we have before remove ?
2. we have following
-------------
helper->createUnit($root,new ProductType('PRODUCT_TYPE_L1','furniture'),900000);
$otherCondition = $helper->createSubdivision($root,new ProductType('PRODUCT_TYPE_L1','baths'),300000);
$helper->createUnit($otherCondition,new ProductType('PRODUCT_TYPE_L2','shower baths'),200000);
$otherCondition_1 = $helper->createSubdivision($otherCondition,new ProductType('PRODUCT_TYPE_L2','freestanding baths'),200000);
$helper->createUnit($otherCondition_1,new ProductBrand('
mywork.com'),300000);
$helper->createUnit($otherCondition,new ProductType('PRODUCT_TYPE_L2'));
$helper->createUnit($root,new ProductType('PRODUCT_TYPE_L1'));
$helper->createUnit($otherCondition_1,new ProductBrand());
-------------
am trying to create these lines of code dynamically using a recursive Array in PHP , but its getting a bit sick
if you have you any idea, please drop it on this.
3. if i form the partition type dynamically , PRODUCT_TYPE_L1 ( 1,2, are dynamic ) - it not working and says "enumeration issue"
any idea on this?
Thanks