Initializing help system before first use

Types

ModelExecution  : record
Record type representing information about the status of an execution in an Xpress Executor component
id  : text
The unique identifer of the execution
iscompleted  : boolean
Whether the execution has completed (successfully or with errors), or not (not started or currently executing)
hasinput  : boolean
Whether the execution has input data.
hasresult  : boolean
Whether the execution has result data.
isexecuting  : boolean
Whether the execution is currently running (not completed and not waiting to start)
executionnode  : text
The name of the gear on which the execution was executed
status  : string
Status of the execution. One of: EXECUTION_STATUS_OK, EXECUTION_STATUS_MATHERR, EXECUTION_STATUS_ERROR, EXECUTION_STATUS_IOERR, EXECUTION_STATUS_NIFCT, EXECUTION_STATUS_NULL, EXECUTION_STATUS_LICERR, EXECUTION_STATUS_STOP, EXECUTION_STATUS_LOAD_ERROR, EXECUTION_STATUS_INTERNAL_ERROR, EXECUTION_STATUS_NOT_COMPLETED
exitcode  : integer
The exit code of the model - the value passed to the Mosel exit() procedure, or 0
creationtimestamp  : real
Timestamp when the execution was created, expressed as milliseconds since 1/1/1970 00:00 UTC
starttimestamp  : real
Timestamp when the execution started to execute, expressed as milliseconds since 1/1/1970 00:00 UTC, or 0 if unset
finishtimestamp  : real
Timestamp when the execution finished executing, expressed as milliseconds since 1/1/1970 00:00 UTC, or 0 if unset
modelparams  : dynamic array(ExecutorParamNames) of text
Additional model parameters used with this execution
RepositoryStatus  : record
Record type representing a summary of the Xpress Executor component's repository status
numexecutions  : integer
The total number of executions currently in the repository
numqueued  : integer
The number of executions in the repository that have not yet started to execute
numinprogress  : integer
The number of executions in the repository that are currently executing
numcompleted  : integer
The number of executions in the repository that have completed (either successfully or with errors)
binarydatasize  : integer
The approximate number of megabytes of binary data stored in the database
binarydataquota  : integer
The maximum number of megabytes of binary data that may be stored in the database
dbsize  : integer
The current size of the database, in megabytes