You need to sign in to do that
Don't have an account?
Rahul.Mishra
Process Builder Error On Change Of Owner
Hi,
Can anyone please help me here:
My task is to remove this workflow and create the process builder with same condition. Problem here is with Owner, Case Owner Can be a user or Queue, in workflow condition we are checking the Case owner's name but we have to check this only when owner is Queue.
I have tried to implement this using following way:
But it did not worked for me, can anyone please help me to get the exact formula.
Thanks,
Rahul
Can anyone please help me here:
My task is to remove this workflow and create the process builder with same condition. Problem here is with Owner, Case Owner Can be a user or Queue, in workflow condition we are checking the Case owner's name but we have to check this only when owner is Queue.
I have tried to implement this using following way:
AND(ISPICKVAL([Case].Status , 'Open') ,[Case].CaseRecordTypeName__c = 'Global Lead Management Intake' ,IF(BEGINS([Case].OwnerId, '00G') ,IF([Case].Owner:Queue.DeveloperName <> 'GBL_Case_Management_Queue', True, False) , True) )
But it did not worked for me, can anyone please help me to get the exact formula.
Thanks,
Rahul
I have made smoll changed in your condition try it.
Let me know if it is does not work.
AND(ISPICKVAL([Case].Status , 'Open') ,[Case].CaseRecordTypeName__c = 'Global Lead Management Intake',IF(BEGINS(TEXT([Case].OwnerId), '00G') ,IF([Case].Owner:Queue.DeveloperName <>'GBL_Case_Management_Queue', True, False) , True) )
Regards,
Shailesh Rawte