|
_CLOSE_FORM_ Method
Outputs the closing variable selection form tags.
This method outputs the following items:
Syntax
CALL SEND(OBJID,'_CLOSE_FORM_',initial-url,service-name,
metabase-name,background-type,background-value,
title,webeis-class);
Where... |
Is Type... |
And Contains... |
initial-url |
C |
the URL of the initial HTML page |
service-name |
C |
the broker service value |
metabase-name |
C |
the metabase name |
background-type |
C |
an optional background type (IMAGE or COLOR) |
background-value |
C |
an optional background value |
title |
C |
the HTML page title |
webeis-class |
C |
the WEBEIS class name. |
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 output for this example is
</TD></TR>
</FORM>
</TD></TR>
<TR><TD>><HR><A HREF="http://www.test.com/mddbpage.html">Select New
File</A></TD></TR>
|