space
Previous Page | Next Page

MDDB Report Viewer 9.2

_DISPLAY_TITLE_ Method

Displays the drill titles above the tabular report

Syntax

 CALL SEND(OBJID,'_DISPLAY_TITLE_',srchchar,titlemsg,varname,dlflag);
Where... Is Type... And Contains...
srchchar C the drill string for the down variable (V) or the across variable (VA).
titlemsg C the name of title message, where the name can be CL_DOWN (for down) or IN_ACROSS (for across).
varname C the down or across variable.
dlflag N a flag that indicates whether to download the table to a spreadsheet, where 0 = output HTML tags with data values, and 1 = output data values with spreadsheet delimiters. This parameter is optional.

Example

dflag=0;
downvar='Geographic';
call send(webid,'_DISPLAY_TITLE_','V','CL_DOWN',downvar,dlflag);

The following output is produced:

<TABLE>
<TR><TD><STRONG>Down: Country=CANADA</STRONG><BR></TD></TR>
</TABLE>


Previous Page | Next Page | Top of Page