is there a way to call business rule from workflow, if yes, how to..?

ranjith5
Kilo Explorer

is there a way to call business rule from workflow, if yes, how to..?

4 REPLIES 4

s_lefebvre
Kilo Expert

Hi ranjith,

 

I don't think it's possible cause business rules works with condition, not with an event.

My idea is to use a script include that you can call from your business rule with script field and from your workflow by a script activity.

 

VaranAwesomenow
Mega Sage

Bhawana Upreti
Tera Guru

Hi,

Yes you can trigger(call) a business rule from workflow.

Convert this to script include, and call it like

var <name of the variable> = new scriptIncludeName().functionName();

 

Thanks.

can you explain this how can we do this ??