LOAD_PROCESS
Use the LOAD_PROCESS script function to load a data sequence that is stored in the AE database using the SAVE_PROCESS script function, and makes the task available. Stored data sequences can be loaded and used several times by any tasks.
Tip: SAVE_PROCESS stores the data sequence, but does not close it. You must close the data sequence with the CLOSE_PROCESS script function. For more information, see :CLOSE_PROCESS.
Syntax
LOAD_PROCESS (RunID, Key)
Parameters
| Parameter | Description | Format |
|---|---|---|
| RunID | Defines the RunID of the task that was used to store the data sequence that should be loaded. | A number without quotation marks, script literal, or script variable |
| Key |
The internal name that was used to store the data sequence in the database. Note: The Key is the return code of the SAVE_PROCESS script function. |
AE name, script literal, or script variable |
Return Codes
This script function returns the reference to the stored data sequence.
Examples
For examples, see SAVE_PROCESS.
See also: