Hi,
Thank you for the detail description. However, this is rather un-usual request and our system is not currently capable of performing such operations, since there are no relationships between products. Anyway, I think you can achieve this using CustomSKUInfoProvider where you can override SetSKUInfo method, since this method is called also when you are changing the product description on product tab of your product.
This is standard custom SetSKUInfo method:
/// <summary>
/// Sets (updates or inserts) specified sKU.
/// </summary>
/// <param name="sKU">SKU to set.</param>
public void SetSKUInfo(object sKU)
{
SKUInfoProvider.SetSKUInfo((CMS.Ecommerce.SKUInfo)sKU);
//your code goes here …
//get description from current SKUInfo and save the description to another product
}
Best Regards,
Miroslav Remias