LOAD_PROCESS

Script Function: Loads a stored data sequence.

Syntax

LOAD_PROCESS (RunID, Key)

Syntax

Description/Format

RunID

The RunID of the task whose stored data sequence should be loaded.
Format: A number without quotation marks, script literal or script variable

Key The internal name under which the data sequence has been stored.
Format: AE name, script literal or script variable

Return Code

The reference to the stored data sequence.

This script function loads a data sequence that has been stored in the AE database using the SAVE_PROCESS script function, and makes the task available.

Specify the RunID of the activity that has been used to store the data sequence and the term that has been used to store the data sequence in the database (Key). The Key is the return code of the function SAVE_PROCESS.

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 still need to close the data sequence with the CLOSE_PROCESS script function. For more information, see :CLOSE_PROCESS.

Examples

For examples, see SAVE_PROCESS.

See also: