cancel
Showing results for 
Search instead for 
Did you mean: 

list of report scheduled

former_member709879
Discoverer
0 Kudos

Hi,

i would like to know if there are a way to find the report on the BusinesssObject Server 2008.

I need it for a list of report scheduled.

Thanks

Accepted Solutions (0)

Answers (1)

Answers (1)

DellSC
Active Contributor
0 Kudos

There is no BusinessObject Server 2008, so I'm going to assume that you're using Crystal Reports Server 2008 (CRS). You'll use something called "QueryBuilder" to do this. This is available at the "AdminTools" link on you CRS website. I don't remember what the exact URL is for that version of CRS, but in newer versions it's at http://<server>:8080/AdminTools.

You'll run a query something like this:

Select SI_ID, SI_NAME, SI_SCHEDULEINFO from CI_INFOOBJECTS where SI_INSTANCE = 1 and SI_SCHEDULE_STATUS = 9

This will get all of the schedules in your system that are in "Recurring" or "Pending" status, unless you have more that 1,000 schedules. In that case it will pull the first 1,000.

-Dell