space
Previous Page | Next Page

MDDB Report Viewer 9.2

_OUTPUT_VARLIST_FORM_ Method

Outputs the HTML for the reach-through to 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);
Where... Is Type... And Contains...
dataset-name N the base table data set name.
url N the broker component of the URL.
htmlfile-id N the ID for the _webout file.
message-id N the ID of the message system.
dataset-id N the ID for the base table data set.
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

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

Previous Page | Next Page | Top of Page