space
Previous Page | Next Page

MDDB Report Viewer 9.2

_OUTPUT_DS2HTM_HTML_ Method

Outputs the HTML for the reach-through to 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);
Where... Is Type... And Contains...
dataset-name C the base table data set name
background C the HTML background value
url C the broker component of the URL
service-name C the broker service value
dataset-member C the data set name (for example, PRDSALE)
next-program-library C the library for the download to spreadsheet program
next-program-catalog C the catalog for the download to spreadsheet program
next-program C the next SCL program to execute to display additional rows of data
debug-value C the broker debug value
where-clause C 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); 

Previous Page | Next Page | Top of Page