Skip to content

Utilities

For various small tasks that cannot be performed inside Arden Syntax natively, utility methods provided by the ArdenSuite can help out.

They can be accessed in the data slot of an MLM via READ or anywhere via INTERFACE and their syntax is always consistent.

Syntax

READ

arden-syntax
data:
  result := READ { UTILITY <utility-name> WITH <Param1> <Value1> AND <Param2> <Value2> AND ... }

INTERFACE

arden-syntax
data:
  utility := INTERFACE { UTILITY <utility-name> WITH <Param1> <Value1> AND <Param2> <Value2> AND ... }
logic:
  result := CALL utility;

List of utilities

  • random-uuid returns a random v4 UUID. There are no parameters.
    • Example: READ { UTILITY random-uuid }