Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set task per specific dates

Hi,

I remember long time ago I could set a task in MCQ to reload on specific dates. I cannot find such option now. Is it only available in QV Publisher?

I need to set the task to reload on every 3rd working day - do you have any suggestion how to do that?

Thanks

tommy

1 Reply
adamdavi3s
Master
Master

You can just set it to reload but wrap your load statement in an IF.

You would need to do some logic to test if it was the third working day but it should work fine

For example we do a huge reload at 2AM and an incremental reload all other times so we have:

IF hour(now()) =2 THEN

DO FULL RELOAD

END IF

DO INCREMENTAL RELOAD