Sequence Numbers Component

Fnd_SqNo_Put

Fnd_SqNo_Put (group name; number to return)

Legacy manual page 233

Parameters

ParameterTypeDescription
group nameTextThe sequence number group name
number to returnLongintThe number to reuse

Description

Call this method to return a number to the specified sequence number group. If the number is higher than the current next number, it will be ignored. It will also be ignored if it is already in the list of numbers to reuse, or if the group name does not already exist.

Fnd_SqNo_Put ("Invoice Numbers";1005)

This method always starts a new process to return the sequence number so the calling process does not have to wait for it to finish.

Extracted source text
            Fnd_SqNo_Put (group name; number to return)

              Parameter                 Type               Description
              group name                Text               The sequence number group name
              number to return          Longint            The number to reuse

            Call this method to return a number to the specified sequence number group. If the number is higher
            than the current next number, it will be ignored. It will also be ignored if it is already in the list of numbers
            to reuse, or if the group name does not already exist.
              Fnd_SqNo_Put ("Invoice Numbers";1005)

            This method always starts a new process to return the sequence number so the calling process does not
            have to wait for it to finish.