To access the routines, double-click the Numeric category, in the
system folder. The Numeric category contains several
routines, notably sequence
, random
and
convertImpliedDecimalFormat
(decimal):
Routine |
Description |
Syntax |
---|---|---|
|
Returns an incremental numeric ID. |
|
|
Creates a sequence if it doesn't exist and attributes a new start value. |
|
|
Removes a sequence. |
|
|
Returns a random whole number between the maximum and minimum values. |
|
|
Returns a decimal with the help of an implicit decimal model. |
|
The three routines sequence
, resetSequence
, and
removeSequence
are closely related.
-
The
sequence
routine is used to create a sequence identifier, nameds1
by default, in the Job. This sequence identifier is global in the Job. -
The
resetSequence
routine can be used to initialize the value of the sequence identifier created bysequence
routine. -
The
removeSequence
routine is used to remove the sequence identifier from the global variable list in the Job.