Template lists

Hi,
Where can I find a comprehensive set of intructions for coding the template files.
I see I can do lists using &
Just by trial and error I found that I could add a default value to that list too by adding a default="x"
Are there any other options in there?

Is there anything that would allow me to generate a messagebox? I know I could fudge it with a raise_application_error.

Code:
BEGIN
  DBMS_OUTPUT.PUT_LINE(getprice(vproduct       => '&<name="Product"
                                                     default="x"
                                                     list="select unique product',
                                vquantity      => &<name="Quantity"
                                                    default="1"
                                                    list="select level from dual connect by level<=1000"> ));
END;

--would become something like

BEGIN
  messagebox(getprice(vproduct       => '&<name="Product"
                                           default="x"
                                           list="select unique product',
                      vquantity      => &<name="Quantity"
                                          default="1"
                                          list="select level from dual connect by level<=1000"> ));
END;

 
Back
Top