Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Pre-work or post-work scripts are executed in system context and this variable is not available.

Example

How to get active user id and name:

Code Block
languagejs
var user = $ActiveUser;
var userId = user.Id;
var userName = user.Name;

...