8.5
Table Of Contents
- Table of Contents
- Welcome to PlanetPress Workflow 8.5
- System Requirements
- Basics
- Features
- The Nature of PlanetPress Workflow
- About Branches and Conditions
- Configuration Components
- Connect Resources
- About Data
- About Documents
- Debugging and Error Handling
- The Plug-in Bar
- About Printing
- About Processes and Subprocesses
- Using Scripts
- Special Workflow Types
- About Tasks
- Task Properties
- Variable Properties
- Working With Variables
- About Configurations
- About Related Programs and Services
- The Interface
- Copyright Information
- Legal Notices and Acknowledgements
The term ... ... is the same as an Excel ...
... is the same as a Database ...
Key Column Field
KeySet Row Record
Note
Group and key names are case-insensitive.
API Reference
Obtaining an instance of the Repository Object
JavaScript
var repoObject = new ActiveXObject("RepositoryLib.WorkflowRepository");
VB Script
set repoObject = CreateObject("RepositoryLib.WorkflowRepository")
In each example in this documentation, the object repoObject is deemed having been obtained through the
above call to the COM object.
Using JSON
Whenever a parameter or return value is defined as a JSONStringArray type, that JSON array is itself a
string. Since a JSON array internally defines double quotes as the delimiter for each element, you must
enclose the entire string in single quotes. Alternatively, you can escape the double quotes inside the JSON
Array.
For instance, the following calls to AddGroup() are correct:
RepoObject.AddGroup("MyGroup",'["FirstKey", "SecondKey"]');
RepoObject.AddGroup("MyGroup","[\"FirstKey\", \"SecondKey\"]");
But the following is incorrect: