What will run first business rule or client script?

IamAmolB
Tera Guru

Hi All,

From a long time i have a puzzel what will run first?
Client script, Business rule, UI policy or   Data policy.

1 ACCEPTED SOLUTION

Miriam Berg
Kilo Guru

Hi Amol,



Client-based code:


"Client-based code that executes in the browser, using Ajax or running as Javascript, always executes before the form submission to the server."


This includes Client scripts and UI Policies.



First onLoad Client scripts, after that the first UI Policies kick in.


After that, the Client scripts and UI Policies that work onChange.


After that, the Client scripts that work onSubmit.



Server-side code: (More info: Execution Order of Scripts and Engines)


  1. Before business rules:
  2. Before engines.
  3. Before business rules:
  4. The data base operation (insert, update, delete).
  5. After business rules:
  6. After engines.
  7. Email notifications.
  8. After business rules.


Hope this helps!



BR /Miriam


View solution in original post

11 REPLIES 11

Yep!


Thank you Miriam. really helpful information.