SAS/IntrNet 9.1: Application Dispatcher |
The HTML Formatting Tools are often used to produce Dispatcher program output. There are some important guidelines to follow when using the Formatting Tools in a Dispatcher program.
capture=on
needs to have a corresponding capture=off
. The Application Server is not guaranteed to turn off these tools for you.
capture=on
mechanism for either the Tabulate or the Output Formatter:
ods listing;
openmode=replace
is used along with this run mode, then the tools will generate a Content-type: text/html
header automatically.openmode=replace
if this call to one of the tools will be creating the first output from this program. This open mode will cause the formatting tools to generate the header (if RUNMODE=S), the HTML head section of the document, and body tags.
openmode=append
if this call to one of the tools will not be creating the first output from this program. If the program has already produced some output, then it has already supplied the content-type header and most likely the HTML head section, as well.The Application Dispatcher is a very flexible programming environment because it provides procedures and tools that automatically generate output, but it also allows exact control of the output. Many SAS programmers have encountered the situation where they want to generate completely customized output. This is often done by using the DATA step and PUT statements. The Dispatcher technology supports PUT statement reporting and allows you to supplement such reports with powerful procedures and Formatting Tools.
SAS/IntrNet 9.1: Application Dispatcher |