Declaring Array Objects

Arrays are declared by using the Array type name, optionally followed by "of" and the type of the elements. If the element type is omitted, it is set by default to ANY.

Local Array of Number &MYARRAY;
Local Array &ARRAYANY;

Arrays can be composed of any valid PeopleCode data type, such as string, record, number, date, and so on.