Versions Compared

Key

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

Script modules are used to define commonly used library functions. Modules can be called from pre work, post work like server environment, or form and validation rule like client environment.

...

  1. Click "+" icon from "Script Modules"
  2. Specify the module name. Because the module name is used in a script environment, whitespace or other punctuation chars cannot be used for it.
  3. Modify the module content as a following script:

...

Code Block
MyModule.sumAsync(1,2).then(function(result) {
    // result = 3
});

Library Modules

Module scripts can be shared with other processes if desired to build a common use library.

Sharing Module Script

Selecting "Is Public" flag from module options allows the publish module script to other processes. Public module contents are dynamically updated when module content is change.

Using Shared Module

To import a shared module;

  • Select the "Add Module" from designer
  • Select the shared module script from list

Module functions can be called same as private module functions.

Library Variables

Rest Service Library Variables

When module script is called from Rest Services in addition to standard variables following variables are automatically defined.

$ActiveUser
Specifies the authenticated user identity.

$GrantedScopes
Specifies the comma separated granted api scopes in string value.

$Headers
Specifies the http context request headers as object instance.

Expand
titleRequest Example
Http Request$Headers

POST /rest/v1/executeModule HTTP/1.1
Host: mydomain.emakin.com
Authorization: Bearer F8C......8B
X-My-Header: MyValue

{
     "apiKey": "49......72",
     "logonId": "myuser@emakin.com",
     "logonProvider": "Organization",
     "process" :"c6acc319-76cd-4265-abc1-d4ee2698dfbd",
     "module": "Module",
     "function" :"myFunction",
     "arguments" : []
}

$Headers defined as;

Code Block
$Headers = {
  "Host": "mydomain.emakin.com",
  "X-My-Header": "MyValue",
  "REMOTE_ADDR": "67.3.2.1",
  "REMOTE_PORT": "80", 
}


$Cookies
Specifies the http context request cookies as object instance.