Outputs the necessary hidden fields for the initial
dynamic HTML page
Syntax
CALL SEND(OBJID,'_OUTPUT_DYNAMIC_HIDDEN_FLDS_',metabase,
background-value,background-type,service,
debug,title,webeis-class);
Where... |
Is Type... |
And Contains... |
metabase |
C |
the metabase name. |
background-value |
C |
the background image URL or color value. This value is optional. |
background-type |
C |
the background type (COLOR or IMAGE). This value is optional. |
service |
C |
the application server service. |
debug |
C |
the debug level. |
title |
C |
the HTML page title. |
webeis-class |
C |
the WEBEIS class name. |
Example
metabase='SASHELP.MBEIS';
bgtype='color';
bg='yellow';
service='default';
debug=0;
title='1997+Sales+Reports';
webcls='SASHELP.WEBEIS.WEBEIS';
call send(webid,'_OUTPUT_DYNAMIC_HIDDEN_FLDS_',metabase,bgtype,bg,
service,debug,title,webcls);
The following output is produced:
<INPUT TYPE="hidden" NAME="metabase" VALUE="SASHELP.MBEIS">
<INPUT TYPE="hidden" NAME="_program" VALUE="sashelp.webeis.mddbrpts.scl">
<INPUT TYPE="hidden" NAME="bgtype" VALUE="color">
<INPUT TYPE="hidden" NAME="bg" VALUE="yellow">
<INPUT TYPE="hidden" NAME="_service" VALUE="default">
<INPUT TYPE="hidden" NAME="debug" VALUE="0">
<INPUT TYPE="hidden" NAME="title" VALUE="1997+Sales+Reports">
<INPUT TYPE="hidden" NAME="class" VALUE="SASHELP.WEBEIS.WEBEIS">