Document Agent Printing

Hello All,
When sending a report to the Document Agent, one of the available actions is “print”. My goal is to have the end user get their scheduled report refreshed and sent to a network printer. So my question is, how do you control the print options within the Document Agent Console? Craig Stark
g GE Electrical Distribution & Control


41 Woodford Avenue
Plainville, CT 06062
8*747-7561


Listserv Archives (BOB member since 2002-06-25)

X-cc: “craig.stark@edc.ge.comcraig.stark@edc.ge.com

You cannot control the print options within the Console. The print command goes to the default printer on the DAS. In order to print to network printers, you have to use scripting (until hopefully this is built into DAS!). Use the PrintOut command:

Sub Main()

Dim doc as BODocument
set doc = Applciation.Documents.Item(1)
doc.Refresh
doc.PrintOut("\server\printershare")

End Sub

Tim

So my question is, how do
you control the print options within the Document Agent Console?


Listserv Archives (BOB member since 2002-06-25)

Is there a way to remove the print option? I can not find anything in the DAS options to remove the print option off the list of available tasks for the user.

Kurt Kerchner
Information Technology
(314)340-9853
http://virpro.sbc.com/businessobjects/

From: Heuer Tim K[SMTP:Heuer_TK@EXCHANGE.PHS.COM]
Sent: Friday, July 17, 1998 10:09 AM

You cannot control the print options within the Console. The print command goes to the default printer on the DAS. In order to print to network printers, you have to use scripting (until hopefully this is built into DAS!). Use the PrintOut command:

Sub Main()

Dim doc as BODocument
set doc = Applciation.Documents.Item(1) doc.Refresh
doc.PrintOut(“\server\printershare”)

End Sub

Tim

So my question is, how do
you control the print options within the Document Agent Console?

Pls report bounces in response to postings to BUSOB-L-Request@listserv.aol.com
For old 3.1 info:
Penn: Page not found
Search: Mail to listserv@listserv.aol.com, ‘search a_phrase in BUSOB-L’
Unsubscribe: Mail to listserv@listserv.aol.com, ‘unsubscribe BUSOB-L’


Listserv Archives (BOB member since 2002-06-25)