Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created July 8, 2021 06:02
Show Gist options
  • Save TheShubhamVsnv/4f9c7e38741e8764e64bf491bfabccc0 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/4f9c7e38741e8764e64bf491bfabccc0 to your computer and use it in GitHub Desktop.
Change the beginning of the product code whenever we insert a new product
trigger changeProductCode on Product2 (before insert) {
list<Product2> productList=trigger.new;
//newer version of the records
for(Product2 pro : productList)
{
if(pro.ProductCode != null && pro.ProductCode != ' ')
{
Pro.ProductCode = 'XYZ -' + pro.ProductCode;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment