space
Previous Page | Next Page

MDDB Report Viewer 9.2

_OUTPUT_DS2HTM_ST_ Method

Outputs the DS2HTM statement to generate the detail data table

Syntax

 CALL SEND (OBJID,'_OUTPUT_DS2HTM_ST_',dataset-name, 
           variable-string,startat,number-of-rows, total-rows);
Where... Is Type... And Contains...
dataset-name C the base table data set name
variable-string C the selected variables to display, separated by spaces
startat N the starting row to display
number-of-rows N the number of rows to display
total-rows N the total number rows of detail data.

Example

dataset='SASHELP.PRDSALE';
varchar='COUNTRY ACTUAL PREDICT';
startat=1;
atatime=50;
numrows=480;
call send(webid,'_OUTPUT_DS2HTM_ST_',dataset,varchar,startat,atatime,numrows); 

Previous Page | Next Page | Top of Page