_OUTPUT_VARLIST_FORM_ Method

Outputs the HTML for the reach-through to the detail variable selection page

Syntax

CALL SEND(OBJID,'_OUTPUT_VARLIST_FORM_',dataset-name,url, htmlfile-id,message-id,
dataset-id,service-name, debug-value,next-program,background-type, background-value);

Required Arguments

dataset-name
the base table data set name.
Type:Numeric
url
the Application Broker component of the URL.
Type:Numeric
htmlfile-id
the ID for the _webout file.
Type:Numeric
message-id
the ID of the message system.
Type:Numeric
dataset-id
the ID for the base table data set.
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

The following output is produced:
dataset='SASHELP.PRDSALE';
url='/cgi-bin/broker';
htmlfile=fopen('_WEBOUT','A');
msgid=instance(loadclass('sashelp.fsp.astmsg.class'),1);
dsid=open(dataset);
service='default';
debug='0';
nextpgm='SASHELP.WEBEIS.DS2HTM.SCL';
bgtype='COLOR';
bg='yellow';
call send(webid,'_OUTPUT_VARLIST_FORM_',dataset,url,htmlfile,msgid,dsid,service,
          debug,nextpgm,bgtype,bg);