Versions Compared

Key

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

...

A plugin named "Database Query Process Tool" is also bundled together as a utility for loading records.

...

NameDescription
Process Tool
  • With the dataset loaded, the plugin will iterate through each record and set the record or assignment as the context, and execute the process tool defined here.
  • In the plugin configuration, when using hash variable, instead of using # to encapsulate, please replace # with $$ in your plugin for parsing to take place in the correct context. For examples:-
    • Assignment mode, use $$form.request.name$$.

      Code Block
      languagejava
      titleExample
      linenumberstrue
      $$form.request.name$$
    • Record mode, use $$form.request.name[@recordId@]$$.

      Code Block
      languagejava
      titleExample
      linenumberstrue
      $$form.request.name[@recordId@]$$
    • Retrieve values from iterator's dataset, use {columnName}.

      Code Block
      languagejava
      titleExample
      linenumberstrue
      {id}
      Code Block
      languagejava
      titleExample
      linenumberstrue
      {name}

...