SET OUTPUT
Documentation | Blog | Demos | Support
SET OUTPUT
4.8 out of 5 stars
2 ratings
5 Stars | 50% | |
4 Stars | 50% | |
3 Stars | 0% | |
2 Stars | 0% | |
1 Stars | 0% |
Specifies the current output.
Syntax
SET OUTPUT docname [APPEND] [FILEPATH file://<file full path>]
Parameters
docname | The name of the application document to which all output is to be sent. Can also be one of the two pre-defined application documents, terminal or printer. |
APPEND | Specifies that new output to docname is to be appended to the output already existing in the application document (if any). |
FILEPATH file://<file full path> | Specifies that output will be written to the file declared in the file option. |
Comments
The SET OUTPUT command specifies the application document that is to receive the output from all subsequent FORM REPORT, GENERATE, LIST, OUTPUT, PRINT, REPORT FROM, and SELECT commands. The setting remains in effect until changed by a subsequent SET OUTPUT command.
The software provides two pre-defined application documents, terminal and printer, that correspond to your terminal screen and default printer, respectively. OUTPUT is set to Terminal by default. If set to printer, the SET OUTPUT command has no impact on the format in which the report prints; use $setproperty to change print properties for a report.
Example
set output MyDoc append set output printer report from ... ... other commands ... endreport set output terminal
This example shows how to write a document anywhere in the system. The first SET OUTPUT sets the output to “c:\myDir\FirstFile.txt” while the second sets it to “c:\myDir\SecondFile.txt”.
set output MyDoc filepath "file://c:\\myDir\\FirstFile.txt" list 20 zimprof set output MyDoc filepath "file://c:\\myDir\\SecondFile.txt" list all AnotherDoc set output terminal
4.8 out of 5 stars
2 ratings
5 Stars | 50% | |
4 Stars | 50% | |
3 Stars | 0% | |
2 Stars | 0% | |
1 Stars | 0% |