_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.
- background
-
the HTML background
value.
- url
-
the Application Broker component
of the URL.
- service-name
-
the Application Broker service
value.
- dataset-member
-
the data set name (for
example, PRDSALE).
- next-program-library
-
the library for the
download to spreadsheet program.
- next-program-catalog
-
the catalog for the
download to spreadsheet program.
- next-program
-
the next SCL program
to execute to display additional rows of data.
- debug-value
-
the Application Broker debug value.
- where-clause
-
the WHERE clause to
apply to the data.
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);