servicenow - can workflow activity be used as a condition in business rules? -


when try use condition

current.wf_activity.name.tostring() == "xxxx" it's not triggering business rule.

when try displaying using gs.addinfomessage(current.wf_activity.name.tostring()); displays 'xxxx'.

it's observed specific types of workflow businessrule triggers while others it's not. have tried without tostring() method not working.

using getdisplayvalue() doesnt works

can site example using workflow activity in business rule conditions?

it's possible wf_activity isn't set @ time business rule runs. may try increasing order of business rule on 1000 (so runs after engines) or changing "before" "after" rule.

if doesn't work, remove condition br , log current value , comparison result:

gs.log("mydebug: current.wf_activity.name=[" + current.wf_activity.name + "]); gs.log("mydebug: comparison?=" + (current.wf_activity.name.tostring() == "xxxx")); 

Comments

Popular posts from this blog

php - How can an email be returned from Stripe Checkout? -

SQL php on different pages to Insert (mysqli) -

linked list - Get the index of the Node in a LinkedList which contains the given value in java -