Please enable JavaScript to view this site.

Process Designer

Navigation: Workflow Design > Additional process functions > Instructions for working with SQL fields in JobRouter > Security

Numerical value (JRINT)

Scroll Prev Top Next More

The function JRINT can be used in any SQL statement to check numeric values. To do so enter the function name followed by the variable e.g. JRINT(INVOICENUMBER) for a process table field or JRINT[invoicenumber] for a form element. The function ensures that all non-numeric values are removed.

Example:

UPDATE TABLE SET NUMBER = JRINT(invoicenumber) WHERE …