You need to sign in to do that
Don't have an account?
Shubham Sengar
trigger problem 4
To update the owner of a case based on the values selected with in a picklist and papulate the owner field with the creaded by the field data when we have seleted any field name = status..??
{
for(Case c:Trigger.new)
{
if(c.Status == 'Priced – (Initial)' || c.Status == 'Priced – (Re-Priced)' || c.Status == 'Price File Loaded')
{
c.OwnerId = c.CreatedById;
}
}
}