Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

How to run ilogic rule in the parts

Anonymous

How to run ilogic rule in the parts

Anonymous
Not applicable

Hi to all

 

        I need some assistance to run the ilogic rule . let me detail. i write the ilogic rule for each part in the assembly. i would like to run all ilogic rule of each part at the same time. is it possible to do in the assembly document which have those parts.

 

thank you

 

regards

rishbi 

0 Likes
Reply
395 Views
1 Reply
Reply (1)

rikard.nilsson
Collaborator
Collaborator

Hi,

 

I think you are looking for this snippet if you need to run a rule in an Occurence

iLogicVb.RunRule("PartA:1", "ruleName")
 

If you have the rules in your Assembly then the most common way is to have the rules trigged by a Parameter. Docing this is quite simple. You need to add something in the rule that are changed by a parameter.. Like this..

Dim triggerParameter as Double = fxParameterName

 

After that you have the rule to Run everytime fxParameterName changes.

 

Regards

Rikard 

0 Likes