Export Done

I have a script that executes the following statement:

call dp.ConvertTo(ExpAsciiCSV,1,sLIST_DOCNAME_ORG)

When it is done, it returns a message: “Export Done!” and pauses execution of the script until I click on the OK button. Is there a way to turn messages off
so that they do not appear while the script is running?

THANKS.


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

Hi, Judith.

There’s a command to turn off these pop-up windows. If you add the following to the beginning of your script, the windows will go away:

Dim appint as BOApplication
Set appint = Application
appint.Interactive = FALSE

Basically, what this does is turn off BusinessObjects’ Interactive mode, the mode under which the application is normally run and which allows the pop-up windows to appear.

But be careful.
This will make any and all pop-up windows go away. Once set for a script, this setting is true for the whole BusinessObjects session.
So it may be a good idea to set
appint.Interactive = TRUE
at the end of your script to avoid hiding other helpful windows during the normal interactive session.

Cheers,
Luis Gonzalez

From: judith.m.dotson@BANKERSTRUST.COM
[SMTP:judith.m.dotson@BANKERSTRUST.COM]

I have a script that executes the following statement:

call dp.ConvertTo(ExpAsciiCSV,1,sLIST_DOCNAME_ORG)

When it is done, it returns a message: “Export Done!” and pauses execution of the script until I click on the OK button. Is there a way to turn messages off
so that they do not appear while the script is running?


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