Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scheduling criteria

Status
Not open for further replies.

nattyborneo

Technical User
Feb 1, 2011
29
DE
Dear all guru,

I hope, it's correct if I am asking BO scheduling here.
I have a report (Crystal Report) :

A condition
Computer OK
Printer OK
Monitor NO

each time in condition column, 'NO' appear, the report should be scheduled. If not, no report scheduled.
Any one has an idea, how to do that?

thanks

rgds,
Nat

 
You would have to do this in code using the SDK. The logic would be something like this:

If Monitor = 'OK' then
use OpenDocument to run the report locally.
else
schedule the report using the SDK code.

I have sample C#.NET code for scheduling reports here:


Look for the BOEScheduleCrystal assembly. This contains sample code that should point you in the right direction.

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top