OOB send email to case assignee business error on saving as new version

Hi Community,

Any Idea how can i fix this issue, I want to modify the OOB send email to case assignee business process, but when I saved it as new version I am getting "Parameter StringComparison not found" error, please take note I have not modified any process element yet, i just saved it as new version

Like 0

Like

1 comments

Dear Fulgen, 

To fix this in formula Change subject you would need to change

"([#First activity.First item of resulting collection.Subject#]).IndexOf("RE: ", StringComparison.OrdinalIgnoreCase) == 0 ? ([#First activity.First item of resulting collection.Subject#]) : "RE: " + ([#First activity.First item of resulting collection.Subject#])"

to 

"([#First activity.First item of resulting collection.Subject#]).ToLower().IndexOf("RE: ".ToLower()) == 0 ? ([#First activity.First item of resulting collection.Subject#]) : "RE: " + ([#First activity.First item of resulting collection.Subject#])"

After that you would get an error in conditional flow Owner = Modified. 

You would need to read case from starting signals and replace this conditional flow to conditional flow comparing Owner and Modified by for the read case. 

Best regards, 

Dennis

Show all comments