convertCSVtoTable
This procedure transforms a comma-separated string or a flat array of string into a recordset containing the array items.
Parameters
| Parameter | Description | 
|---|---|
delimitedList | Objects as a comma-separated list or array of string; mandatory | 
Attributes
Attribute  | Type  | 
|---|---|
  | string  | 
Example
CALL "UTILS.convertCSVtoTable"( 
	"delimitedList" => ARRAY('John', 'Paul', 'George', 'Ringo') 
);;