<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Schedule Tasks automatically in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105875#M761932</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer below mentioned link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlikview.com/thread/309740" title="https://community.qlikview.com/thread/309740"&gt;Schedule Task to run automatically in QMC | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Aug 2018 10:42:33 GMT</pubDate>
    <dc:creator>sarvesh</dc:creator>
    <dc:date>2018-08-04T10:42:33Z</dc:date>
    <item>
      <title>Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105874#M761931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my requirement to automate jobs in QMC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Daily Jobs scheduled to run at 3 am which will load QVD files&lt;/LI&gt;&lt;LI&gt;Completion of QVD file will run&amp;nbsp; Data Model&lt;/LI&gt;&lt;LI&gt;Completion of &lt;SPAN style="color: #ff0000;"&gt;Data Model&lt;/SPAN&gt; will run Daily Export jobs&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Weekly jobs (Export) has to run on every Saturday after completion of &lt;SPAN style="color: #ff0000;"&gt;Data Model run&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Monthly jobs (Export) has to run on 1st day of every month&amp;nbsp; after Completion of &lt;SPAN style="color: #ff0000;"&gt;Data Model run&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt; : &lt;SPAN style="color: #ff0000;"&gt;Data Model&lt;/SPAN&gt; will run daily. Weekly and Monthly (Export) jobs has to run after &lt;SPAN style="color: #ff0000;"&gt;data model run&lt;/SPAN&gt; completion only on Saturday and 1st day of month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we make &lt;SPAN style="color: #ff0000;"&gt;Data Model run&lt;/SPAN&gt; completion as a trigger to initiate Weekly and Monthly jobs, then weekly and Monthly jobs will run daily which is incorrect. So currently we are running weekly and Monthly jobs Manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know solution to automate weekly and monthly jobs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Highlighted in red to understand that in all&amp;nbsp; places i am referring to the same job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105874#M761931</guid>
      <dc:creator>nandhuvji</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105875#M761932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer below mentioned link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlikview.com/thread/309740" title="https://community.qlikview.com/thread/309740"&gt;Schedule Task to run automatically in QMC | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2018 10:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105875#M761932</guid>
      <dc:creator>sarvesh</dc:creator>
      <dc:date>2018-08-04T10:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105876#M761933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand, with EDX the triggers can be customized:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-2650"&gt;Using EDX in QlikView 11&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another quick workaround can be setting a check at start of reload of monthly and weekly documents, if it's not saturday or day 1 exit script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Weekly check&lt;/P&gt;&lt;P&gt;IF Num(WeekDay(Today()))&amp;lt;&amp;gt;5 THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXIT Script;&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Monthly check&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;IF Day(Today())&amp;lt;&amp;gt;1 THEN&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; EXIT Script;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ENDIF&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;The reload will be executed every day, but exits at start when conditions are not meet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2018 11:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105876#M761933</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-08-04T11:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105877#M761934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try implementing above code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:38:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105877#M761934</guid>
      <dc:creator>nandhuvji</dc:creator>
      <dc:date>2018-08-06T13:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105878#M761935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ruben, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The workaround will not work if i have to run the weekly or monthly file on demand from users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel EDX will work for me. There is no &lt;SPAN style="color: #3d3d3d; font-family: Helvetica, sans-serif;"&gt;QMSEDX program available to download from the&amp;nbsp; below link . Can you please provide me the same ASAP?&amp;nbsp; I have to implement the solution before this friday.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: Helvetica, sans-serif;"&gt;&lt;A href="https://community.qlikview.com/thread/309740" title="https://community.qlikview.com/thread/309740"&gt;Schedule Task to run automatically in QMC | Qlik Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: Helvetica, sans-serif;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: Helvetica, sans-serif;"&gt;Anand&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 00:37:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105878#M761935</guid>
      <dc:creator>nandhuvji</dc:creator>
      <dc:date>2018-08-08T00:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105879#M761936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anand, at the end of the link I posted before there are some files to download, two of them are executables:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-2650"&gt;Using EDX in QlikView 11&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 06:14:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105879#M761936</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-08-08T06:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105880#M761937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am not able to trigger tasks via EDX in QMC. Please let me know, what i am missing or is there anything wrong in the&amp;nbsp; steps that i followed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have downloaded QMSEDX_CommandLine_v1 from &lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="2650" data-objecttype="102" href="https://community.qlik.com/docs/DOC-2650" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Using EDX in QlikView 11&amp;nbsp; &lt;/A&gt;and configured the tasks in QMC as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1. Task set to schedule on External Event in QMC&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2. Entered password for the task&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;3. Downloaded &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;QMSEDX_CommandLine_v1 &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;from &lt;/SPAN&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="2650" data-objecttype="102" href="https://community.qlik.com/docs/DOC-2650" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Using EDX in QlikView 11&lt;/A&gt; and extracted the file s to to C:\Program Files (x86)\QMSEDX_CommandLine&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4. Created batch file to trigger the task and saved the bacth file in &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;C:\Program Files (x86)\&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Batch file script :&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"C:\Program Files (x86)\&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;QMSEDX_CommandLine_v1&lt;/SPAN&gt;\QMSEDX.exe" -task="Report Name.qvw" -qms="QVServerName"&amp;nbsp; -password="XXXX"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;5. I ran the batch scrip by double clicking on the file / right click run as administrator. The command line pop up page flickers and immediately disappeared.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;6. The task did not run in QMC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2018 16:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105880#M761937</guid>
      <dc:creator>nandhuvji</dc:creator>
      <dc:date>2018-08-15T16:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105881#M761938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand, sorry for delay, try setting -qms as:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://ServerName_or_IP:4799/QMS/Service" rel="nofollow" target="_blank"&gt;http://ServerName_or_IP:4799/QMS/Service&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To stop the window for closing you can set a "pause" command in the batch file, to check for possible errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are interesting comments in the document that helps on how to configure it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Aug 2018 10:45:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105881#M761938</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-08-26T10:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule Tasks automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105882#M761939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue has been resolved . Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2018 13:18:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Schedule-Tasks-automatically/m-p/105882#M761939</guid>
      <dc:creator>nandhuvji</dc:creator>
      <dc:date>2018-09-13T13:18:53Z</dc:date>
    </item>
  </channel>
</rss>

