Load() and with() function difference

 Can Somebody explain the conceptual difference between load() and with() function ? what if I use a rule which is declared inside load() function and again use it without load() function in a form , what will be the difference ? Can somebody explain please.

  Discussion posts and replies are publicly visible

Parents
  • Load()-
    1) Define local variables within an expression for a SAIL interface & evaluate the expression with local variables.
    2) Retrieve data sets once & not have to get multiple times in an expression.
    3) We can also used to create variables that capturing same data just like any other variable on a form. However, these variables only store data for a length the user is looking & interacting with a screen. When the user freshers or leaves screen the data in the local variables deleted.
    With()-
    1) Defines local variables within a function and evaluate the expression with the new variables.
    2) It recalculates the local variable values each time the expression is re-evaluated.
Reply
  • Load()-
    1) Define local variables within an expression for a SAIL interface & evaluate the expression with local variables.
    2) Retrieve data sets once & not have to get multiple times in an expression.
    3) We can also used to create variables that capturing same data just like any other variable on a form. However, these variables only store data for a length the user is looking & interacting with a screen. When the user freshers or leaves screen the data in the local variables deleted.
    With()-
    1) Defines local variables within a function and evaluate the expression with the new variables.
    2) It recalculates the local variable values each time the expression is re-evaluated.
Children
No Data