_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);
Required Arguments
- dataset-name
-
the base table data
set name.
- variable-string
-
the selected variables
to display, separated by spaces.
- startat
-
the starting row to
display.
- number-of-rows
-
the number of rows
to display.
- total-rows
-
the total number of
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);