Contents MDDB Report Viewer Methods Previous Next
 

_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 (V) or the across (VA)
titlemsg C the name of title message, where the name can be CL_DOWN (for down) or IN_ACROSS (for across)
varname C 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; 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>



Contents MDDB Report Viewer Methods Previous Next