SAS Institute. The Power to Know

MDDB Report Viewer 9.2

space
Previous Page | Next Page

MDDB Report Viewer 9.2

_OUTPUT_ACROSS_LIST_ Method

Outputs a label and HTML tags for a selection list

This method outputs

  • the Across label for the selection list

  • a SELECT tag for the variable list

  • an OPTION tag for each available variable

  • the closing SELECT tag.

Syntax

 CALL SEND(OBJID,'_OUTPUT_ACROSS_LIST_',across-variable);
Where... Is Type... And Contains...
across-variable C the previously selected across variable. This parameter is optional.

Example

The following output is produced:


Across:<BR>
<SELECT NAME="ac" SIZE=3 MULTIPLE onChange="change(document.mF.ac)">
<OPTION VALUE="  ">
<OPTION SELECTED VALUE=Product+Line>Product Line (hier)
<OPTION VALUE=Geographic>Geographic (hier)
<OPTION VALUE=Time>Time (hier)
<OPTION VALUE=COUNTRY>Country
<OPTION VALUE=COUNTY>County
<OPTION VALUE=MONTH>Month
<OPTION VALUE=PRODTYPE>Product Type
<OPTION VALUE=PRODUCT>Product
<OPTION VALUE=QUARTER>Quarter
<OPTION VALUE=STATE>State/Province
<OPTION VALUE=YEAR>Year
</SELECT>




Previous Page | Next Page | Top of Page