_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.
Type:Character
variable-string
the selected variables to display, separated by spaces.
Type:Character
startat
the starting row to display.
Type:Numeric
number-of-rows
the number of rows to display.
Type:Numeric
total-rows
the total number of rows of detail data.
Type:Numeric

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);