| MDDB Report Viewer 9.2 |
CALL SEND(OBJID,'_OUTPUT_VARLIST_HTML_',dataset-id,htmlfile-id,
message-id,dataset-name,url,service-name,
debug-value,next-program,background-type,
background-value);
| Where... | Is Type... | And Contains... |
|---|---|---|
| dataset-id | N | the ID for the base table data set. |
| htmlfile-id | N | the ID for the _webout file. |
| message-id | N | the ID of the message system. |
| dataset-name | N | the base table data set name |
| url | N | the broker component of the URL. |
| service-name | N | the broker service value. |
| debug-value | N | the application server debug level. |
| next-program | N | the next SCL program to execute when the form is completed. |
| background-type | N | the background type (IMAGE or COLOR). This parameter is optional. |
| background-value | N | the background value. This parameter is optional. |
dataset='SASHELP.PRDSALE';
dsid=open(dataset);
htmlfile=fopen('_WEBOUT','A');
msgid=instance(loadclass('sashelp.fsp.astmsg.class'),1);
url='/cgi-bin/broker';
service='default';
debug='0';
nextpgm='SASHELP.WEBEIS.DS2HTM.SCL';
bgtype='COLOR';
bg='yellow';
call send(webid,'_OUTPUT_VARLIST_HTML_',dsid,htmlfile,msgid,dataset,url,service,
debug,nextpgm,bgtype,bg);
Copyright © 2007 by SAS Institute Inc., Cary, NC, USA. All rights reserved.