_OUTPUT_DS2HTM_HTML_ Method

Outputs the HTML for the reach-through to the detail data page

Syntax

CALL SEND(OBJID,'_OUTPUT_DS2HTM_HTML_',dataset-name, background,url,
service-name, dataset-member, next-program-library,next-program-catalog,next-program,
debug-value,where-clause);

Required Arguments

dataset-name
the base table data set name.
Type:Character
background
the HTML background value.
Type:Character
url
the Application Broker component of the URL.
Type:Character
service-name
the Application Broker service value.
Type:Character
dataset-member
the data set name (for example, PRDSALE).
Type:Character
next-program-library
the library for the download to spreadsheet program.
Type:Character
next-program-catalog
the catalog for the download to spreadsheet program.
Type:Character
next-program
the next SCL program to execute to display additional rows of data.
Type:Character
debug-value
the Application Broker debug value.
Type:Character
where-clause
the WHERE clause to apply to the data.
Type:Character

Example

dataset='SASHELP.PRDSALE';
bgchar='BGCOLOR=YELLOW';
url='/cgi-bin/broker';
service='default';
member='PRDSALE';
pgmlib='SASHELP';
pgmcat='WEBEIS';
program='SASHELP.WEBEIS.DS2HTM.SCL';
debug='0';
where='COUNTRY=CANADA';
call send(webid,'_OUTPUT_DS2HTM_HTML_',dataset,bgchar,url,service,member,pgmlib,pdmcat,
program,debug,where);