_DISPLAY_ANALYSIS_VARS_ Method
Outputs the chosen analysis variables to the report table.
Syntax
CALL SEND(OBJID,'_DISPLAY_ANALYSIS_VARS_',column-list,dlflag);
Where... |
Is Type... |
And Contains... |
column-list
| N
| the column list from the _EMDDB_M_ class.
|
dlflag
| N
| a flag that indicates whether to download the table to a spreadsheet.
|
Example
The following is a sample of the output produced by this method:
<TR>
<TH COLSPAN=2 CLASS="analycol">
<DIV CLASS="analysis">
<SELECT NAME="A" CLASS="ANALYBOX" onChange="submit();">
<OPTION SELECTED VALUE=ACTUAL> Actual Sales
<OPTION VALUE=DIFF> Sales Lag
<OPTION VALUE=PREDICT> Predicted Sales
<OPTION VALUE=SALESRAT> Sales Ratio
</SELECT>
</DIV>
</TH>
<TH COLSPAN=2 CLASS="analycol">
<DIV CLASS="analysis">
<SELECT NAME="A" CLASS="ANALYBOX" onChange="submit();">
<OPTION VALUE=ACTUAL> Actual Sales
<OPTION VALUE=DIFF> Sales Lag
<OPTION SELECTED VALUE=PREDICT> Predicted Sales
<OPTION VALUE=SALESRAT> Sales Ratio
</SELECT>
</DIV>
</TH>
<TH COLSPAN=2 CLASS="analycol">
ACTUAL SALES </TH>
<TH COLSPAN=2 CLASS="analycol">
PREDICTED SALES </TH>
</TR>
|