_DISPLAY_TITLE_ Method

Displays the drill titles above the tabular report

Syntax

CALL SEND(OBJID,'_DISPLAY_TITLE_',srchchar,titlemsg,varname,dlflag);

Required Arguments

srchchar
the drill string for the down variable (V) or the across variable (VA).
Type:Character
titlemsg
the name of the title message, where the name can be CL_DOWN (for down) or IN_ACROSS (for across).
Type:Character
varname
the down or across variable.
Type:Character
dlflag
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.
Type:Numeric

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>