_OUTPUT_DYNAMIC_HIDDEN_FLDS_ Method
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);
Required Arguments
- metabase
-
the metabase name.
- background-value
-
the background image
URL or color value. This value is optional.
- background-type
-
the background type
(COLOR or IMAGE). This value is optional.
- service
-
the application server
service.
- debug
-
the debug level.
- title
-
the HTML page title.
- webeis-class
-
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">