_CLOSE_FORM_ Method

Outputs the closing variable selection form tags

Syntax

CALL SEND(OBJID,'_CLOSE_FORM_',initial-url,service-name, metabase-name,
background-type,background-value, title,webeis-class);

Required Arguments

initial-url
the URL of the initial HTML page.
Type:Character
service-name
the Application Broker service value.
Type:Character
metabase-name
the metabase name.
Type:Character
background-type
an optional background type (IMAGE or COLOR).
Type:Character
background-value
an optional background value.
Type:Character
title
the HTML page title.
Type:Character
webeis-class
the WEBEIS class name.
Type:Character

Details

This method outputs
  • the </FORM> tag
  • the link back to the initial HTML page.

Example

mddblink= "http://www.test.com/mddbpage.html';
service= 'default';
metabase= 'SASHELP.MBEIS';
bgtype= 'COLOR';
bg= 'YELLOW';
title= 'Third Quarter Sales Reports';
webcls= 'SASHELP.WEBCAT.MYWEB.CLASS';
call send(webid,'_CLOSE_FORM_',mddblink,service,metabase,
          bgtype,bg,title,webcls);
The following output is produced:
</TD></TR>
</FORM>
</TD></TR>
<TR><TD>><HR><A HREF="http://www.test.com/mddbpage.html">Select New
File</A></TD></TR>