Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jitu2110
Creator
Creator

Job Scheduling in Qlikview Server

Hi,

i want to schedule a Job daily basis in Qlikview Server which suppose to run on specific time like 6:00 PM and if it not successful executed try around 10-15 times on 2-3 min interval and after that it stopped.

i know to how to trigger a Job but only basic like trigger by time etc.

6 Replies
jitu2110
Creator
Creator
Author

Hi, did anyone have any idea how to do this

Anonymous
Not applicable

what is the cause of unsucessful execution?

Does reading a qvd or excel file cause the problem?!?

jitu2110
Creator
Creator
Author

My Job which is written in vb script is fine, i am able to handle successful and failure both cases. and failure cause did not matter. my concern is just that i want to run a particular job for for multiple times ( 4-5 times) after 2-3 minutes of interval, how schedule that

neelamsaroha157
Specialist II
Specialist II

You have an option to pass parameters for 'Number of times' & 'Timeout'.

Capture.PNG

jitu2110
Creator
Creator
Author

Hi,

Thanks for response.

That Option is available in QVW Trigger Option, i want this in Supporting Task -> External Program. in that there is not such option.

Anonymous
Not applicable

I don't know the details, but you could do the following:

- create a "second qvw"

- after unsucessful reload of main.qvw load the  "second qvw"

- the second qvw uses a counter saved in a separate qvd,  you could also work with sleep command for delaying

- on sucessful reload of "second qvw" , main.qvw will be triggered ...

------------------------------

If the limit is reached , for example 15 times, then force the "second qvw" to end in an error

--> you could call just a function that doesn't exist --> Call 'Dummy';

-----------------------------

don't forget to reset the counter once a day...