How to call the business rule in UI action to update the records from other table

Nagesh5
Tera Contributor

@asifnoor 

I want to call the Business rule in UI action post popup message logic should be executed in Businesses rule. Could you please help anyone to how to do this logic.

Thanks,

Kalava Nagesh

1 ACCEPTED SOLUTION

asifnoor
Kilo Patron

Hello Nagesh,

you cannot call a BR directly.

If your UI action already has server code, then you can simply copy that code into the BR and update that table in your UI action.

When the table is updated, your BR will trigger and will execute that code.

Let me know if that helps.

 

View solution in original post

2 REPLIES 2

asifnoor
Kilo Patron

Hello Nagesh,

you cannot call a BR directly.

If your UI action already has server code, then you can simply copy that code into the BR and update that table in your UI action.

When the table is updated, your BR will trigger and will execute that code.

Let me know if that helps.

 

Nagesh5
Tera Contributor
Followed the above approach and it's working perfectly Thanks for the solution