Hi,
There is no option for changing the product to global product in the CMS Desk. However, you could accomplish that by setting the
SKUSiteID of the
SKUInfo object to 0 as shown here:
SKUInfo skuiObj = SKUInfoProvider.GetSKUInfo(skuId);
skuiObj.SKUSiteID = 0;
SKUInfoProvider.SetSKUInfo(skuiObj);
Best regards,
Michal Legen