_OUTPUT_ANAL_LIST_ Method

Outputs a label and HTML tags for a selection list

Syntax

CALL SEND(OBJID,'_OUTPUT_ANAL_LIST_');

Details

This method outputs
  • the analysis label for the selection list
  • a <SELECT> tag for the variable list
  • an <OPTION> tag for each available variable
  • the closing </SELECT> tag.

Example

The following output is produced:
<TR><TD CLASS="label"> Analysis:<DIV CLASS="analysis">
><SELECT NAME="A" MULTIPLE SIZE=3>
<OPTION SELECTED VALUE=ACTUAL>Actual Sales
<OPTION VALUE=PREDICT>Predicted Sales
</SELECT>
</DIV>
</TD>
</TR>