_OUTPUT_VARLIST_HTML_ Method

Outputs the HTML for the reach-through to the 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);

Required Arguments

dataset-id
the ID for the base table data set.
Type:Numeric
htmlfile-id
the ID for the _webout file.
Type:Numeric
message-id
the ID of the message system.
Type:Numeric
dataset-name
the base table data set name.
Type:Numeric
url
the Application Broker component of the URL.
Type:Numeric
service-name
the Application Broker service value.
Type:Numeric
debug-value
the application server debug level.
Type:Numeric
next-program
the next SCL program to execute when the form is completed.
Type:Numeric
background-type
the background type (IMAGE or COLOR). This parameter is optional.
Type:Numeric
background-value
the background value. This parameter is optional.
Type:Numeric

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);