Dependent Rules - iLogic

Dependent Rules - iLogic

sam
Advocate Advocate
535 Views
2 Replies
Message 1 of 3

Dependent Rules - iLogic

sam
Advocate
Advocate

Hi Guys, 

I need help with a scenario. I have total of 6 rules and I want those to be run in specific order. 

1. Is their a way to define a rule that control all other rules in a specific order?

2. If one is not possible, is there a way to add reference rule no 2 in rule no 1, reference of rule number three in rule no 2 and so on (so that they run in required order.)

Best regards, 

Sam

0 Likes
Accepted solutions (1)
536 Views
2 Replies
Replies (2)
Message 2 of 3

JhoelForshav
Mentor
Mentor
Accepted solution

Hi @sam 

You can create a rule that runs the other rules and build it something like this:

 

Sub Main()
	iLogicVb.RunRule("Name of rule 1")
	iLogicVb.RunRule("Name of rule 2")
	iLogicVb.RunRule("Name of rule 3")
	'And so on...
End Sub

 

Message 3 of 3

sam
Advocate
Advocate

Thanks @JhoelForshav 

 

Really appreciate your help. 

 

regards, 

sam