Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following fields are configured on in the Details tab Basic Settings:

FieldDescription
NameThe name of the sequence.
Start ValueThe first value in the sequence.Current ValueThe highest value already allocated.

The following fields are configured on the Advanced tab:

Field
Description
Block Size

To configure the sequence to generate values without any gaps in the sequence, at the expense of increased database load, set the block size to 1.

To improve performance, and allow gaps in the sequence of values, set the block size to a value greater than 1.

The following fields are configured on the Description tab:

FieldDescription
DescriptionFree form text field to describe the Sequence.

Form Icons

Current Value(Readonly) The highest value already allocated.

The form provides the standard form icons.

...

To set a stream attribute to a unique order idID:

  • Create a Sequence named 'order_id'
  • Create a Stream with an Integer attribute. Set its attribute expression to:

Code Block
nextValue('order_id')

Every time a new record is generated in this stream, nextValue will return a new unique value.

...