Hi,
I run some business objects reports using my PC's sceduled tasks. These reports refresh overnight and dump into a text file for other users.
The problem is that one of the reports has been returning a partial result for the past 3 months and we've only just spotted it.
Because I run several scheduled tasks and I don't want them to interrupt each other I've put some code at the beginning of each open routing to stop them breaking down:
This means that I never get to see any errors that occur, does anybody have any ideas about how I can log these errors yet still allow my tasks to run unhindered?
I'm using BO full client version 6.5 and I'm on an XP set up.
I run some business objects reports using my PC's sceduled tasks. These reports refresh overnight and dump into a text file for other users.
The problem is that one of the reports has been returning a partial result for the past 3 months and we've only just spotted it.
Because I run several scheduled tasks and I don't want them to interrupt each other I've put some code at the beginning of each open routing to stop them breaking down:
Code:
busobj.Application.Interactive = False
busobj.Application.BreakOnVBAError = False
This means that I never get to see any errors that occur, does anybody have any ideas about how I can log these errors yet still allow my tasks to run unhindered?
I'm using BO full client version 6.5 and I'm on an XP set up.