2021.2

Table Of Contents
Property Description
jobInfo Returns a ScriptableAutomation object containing Job Info 1 to 9 values
from PlanetPress Workflow (see "Fixed automation properties" on
page342, and Job Info variables in the Workflow Online Help).
properties Returns a ScriptableAutomation object containing additional information
(ProcessName, OriginalFilename and TaskIndex) from PlanetPress
Workflow (see "Fixed automation properties" on page342).
parameters Returns a ScriptableAutomation object containing the custom runtime
parameters defined in the data mapping configuration (see "Properties
and runtime parameters" on page228).
At runtime this object also contains any local and global variables defined
by the user in PlanetPress Workflow, to ensure compatibility with previous
versions.
variables Deprecated; use automation.parameters instead. Both properties
contain the same list of elements, but the variables property is kept for
backward compatibility and may eventually be removed.
Examples
To access JobInfo 1 to 9 defined in Workflow (see Job Info variables):
automation.jobInfo.JobInfo1;
To access ProcessName, OriginalFilename or TaskIndex from Workflow:
automation.properties.OriginalFilename;
To access Workflow variables (see "Properties and runtime parameters" on page228):
automation.parameters.runtimeparametername;
Page 396