Creates an argument List you can pass to the OLE2 Automation server.
FUNCTION OLE2.Create_Arglist
RETURN List_Type;
A handle to an argument List.
/*
** Declare a variable of the type OLE2.List_Type
** then create the argument List Of that name
*/
my_Arglist OLE2.List_Type;
BEGIN
my_Arglist := OLE2.Create_Arglist;
OLE2.Add_Arg(my_Arglist, 'Sales Revenue');
END;