Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
eromiyasimon
Creator II
Creator II

QMC multi condition schedule

 

I need to setup a job which is depending on successor of a daily run, but I want my job only to be run on Friday? Is there any way to schedule that on QMC

 

3 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Create a blank qvw (lets call it FridayTrigger.qvw), and create a task for this to run only on a Friday. Then for your job, create an "on Multiple Events Completed" trigger that will check to see completion of the daily task run and the FridayTrigger task run. Adjust the time constraint* as required.

* this is the maximum time interval between the completion of the tasks. they must complete within this interval to satisfy the trigger

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
jonathandienst
Partner - Champion III
Partner - Champion III

You will want to put DailyTrigger.qvw in a folder that is not mounted on the access point.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi Eromiya,

May be you need write code in qvw  like below:

If(Weekday='FRI*')

.

.

All Code

..

..

else

.

.

Exit;

Thanks,

Arvind Patil