MDDB Report Viewer Methods |
This method:
gets the default title value from the DT macro variable
ouputs the title in HTML format or in comma-separated format, depending on the value of dlflag.
CALL SEND(OBJID,'_DISPLAY_TITLE_',dlflag);
Where... | Is Type... | And Contains... |
---|---|---|
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. |
dflag=0; call send(webid,'_DISPLAY_DEFAULT_TITLE_',dflag);
The following output is produced:
<H2>1998 Sales Reports </H2>
MDDB Report Viewer Methods |