Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Title style corrected

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

... This page is under construction and will be completed shortly ...

Global Variables

Global variables can be merged with job parameters and order parameters.

Example showing the merging of global variables:

Code Block
Code Block

Example showing the merging of global variables:

 function spooler_task_before() \{
    
    var globals = spooler.create_variable_set();
    globals.merge( spooler.variables() );
    var parameters = spooler_task.params();
 
    globals.merge( parameters );
    spooler_task.params().merge( globals );
 
    return true;
 \}
}

See also