I really appreciate all the responses; I was asking for a colleague who didn't make the switch when the mailing list moved, and y'all certainly kept me busy forwarding mail yesterday!

When I last touched base with him, he was working with the information Susan provided below (which is why I'm replying here), and indicated that it was working for him.

Once again, thanks for the replies!
--
Dave Walker (from home)

Susan Lynch wrote:
In response to:  "Walker, Dave (Ivy Hill)"  who asked:

Is there a way to assign TWO printers to a single print job. I.E., we want

a

report to print both on the shipping floor and in the shipping manager's
office. The only thing I could come up with was to run the report once for
each printer. Any way to generate it once and send it to both printers at
the same time?


If you are on Unidata, the Unidata commands manual indicates that you can do
it this way, if your report is being generated by a Basic program:

---------------------------------------------------------------Submitting
Concurrent Print Jobs

With SETPTR, you can define up to 31 logical printer units per UniData
session. You can use this functionality to submit concurrent print jobs fom
a UniBasic application. One common implementation follows:

- Define two logical printer units (for instance, 0 and 1) that point to
different physical print devices.

- Direct all lines of a report to one printer with the UniBasic PRINT ON
command (for instance, PRINT ON 0 PRINT.LINE).

- Direct summary (break) lines to the second printer (PRINT ON 0 PRINT.LINE
followed by PRINT ON 1 PRINT.LINE).

In this way, you can print a summary report and a detail report at the same
time.

---------------------------------------------------------------

Or, in your case, print each line to each printer, so that you don't have to
run the same job twice with 2 different destinations.

Susan M. Lynch
F.W. Davison & Company, Inc.

CONFIDENTIALITY NOTICE:
This e-mail message, and any accompanying documents, is for the sole use of
the intended recipient(s) and may contain confidential and privileged
information.  Any unauthorized review, use, disclosure, distribution or
copying is prohibited.  If you are not the intended recipient, please
contact our office by email or by telephone at (508) 747-7261 and
immediately destroy all copies of the original message.
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to