_OUTPUT_VARLIST_HTML_ Method
Outputs the HTML for the reach-through to detail variable selection page
Syntax
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. |
Example
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);