MDDB Report Viewer Methods |
This method outputs
the </FORM> tag
the link back to the initial HTML page.
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. |
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>
MDDB Report Viewer Methods |