<?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: Execution Faild in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445811#M796509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try Following things:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are saving any qvd using this script then ensure that you have access to create the qvd in specified folder and also check if you are going to replace the qvd then if that qvd is used in other program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also if this query is running on sql the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;//BETWEEN '2014-01' AND '2014-08' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;comment in sql is -- instead of //&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;so replace comments accordingly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sushil&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Dec 2017 06:03:39 GMT</pubDate>
    <dc:creator>sushil353</dc:creator>
    <dc:date>2017-12-22T06:03:39Z</dc:date>
    <item>
      <title>Execution Faild</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445808#M796506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All&lt;/P&gt;&lt;P&gt;I have given below script , but i reload this come to error massage&lt;SPAN style="font-size: 14pt;"&gt; " Execution script failed Reload old data"&lt;/SPAN&gt; to qlick view. but in this script working properly the sql data base.&lt;/P&gt;&lt;P&gt;please help &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sagara&lt;/P&gt;&lt;P&gt;SELECT &lt;/P&gt;&lt;P&gt;tra_branch,&lt;/P&gt;&lt;P&gt;PRODUCT,&lt;/P&gt;&lt;P&gt;TRUNC(tra_pol_date),&lt;/P&gt;&lt;P&gt;pri_class_code,&lt;/P&gt;&lt;P&gt;POLICY_NO,&lt;/P&gt;&lt;P&gt;MECODE,&lt;/P&gt;&lt;P&gt; SUM(RIFUND_PREMIUM) RIFUND_PREMIUM,SUM(RIFUND_COMM)RIFUND_COMM&lt;/P&gt;&lt;P&gt;FROM &lt;/P&gt;&lt;P&gt;(select tra_currency,CLASS,POLICY_NO, MONTH,YEAR,tra_pol_date, tra_branch,PRODUCT,pri_class_code,MECODE,&lt;/P&gt;&lt;P&gt; sum(RIFUND_PREMIUM) RIFUND_PREMIUM, sum(RIFUND_COMM) RIFUND_COMM&lt;/P&gt;&lt;P&gt; from &lt;/P&gt;&lt;P&gt;(SELECT tra_currency,tra_class_code CLASS,TRA_POLICY_NO POLICY_NO , &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( SELECT n.RPO_DDC_SEQ FROM uw_t_ri_policies@ri n where n.rpo_pol_seq_no=a.tra_policy_seq ) deb_rec, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to_char(tra_pol_date, 'MM') MONTH,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to_char(tra_pol_date, 'YYYY') YEAR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tra_branch, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tra_pol_date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pri_class_code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tra_prod_code PRODUCT,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (select c.rpo_pol_marketing_executive_co from uw_t_ri_policies@ri c where C.rpo_pol_seq_no=a.tra_policy_seq&amp;nbsp; )MECODE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b.PRI_RI_PREMIUM*TRA_CUR_CON_RATE RIFUND_PREMIUM, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; b.pri_ri_comm*TRA_CUR_CON_RATE RIFUND_COMM&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM ri_t_polcy_trans a, ri_t_polcy_trans_rein b&lt;/P&gt;&lt;P&gt; where a.tra_trans_seq=b.pri_trans_seq &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plus.png" /&gt; and a.tra_step_no=b.pri_step_no(+)&lt;/P&gt;&lt;P&gt; and to_char(tra_pol_date,'YYYY')='2017'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; //BETWEEN '2014-01' AND '2014-08'&lt;/P&gt;&lt;P&gt; and b.pri_reinsurer_code in ('RI FUND','RIFUND','MIFUND')&lt;/P&gt;&lt;P&gt;AND tra_branch like 'CO%'&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt; group by tra_currency,YEAR, MONTH,CLASS,PRODUCT,POLICY_NO,tra_branch,tra_pol_date,pri_class_code,deb_rec,MECODE)&lt;/P&gt;&lt;P&gt; group by YEAR,POLICY_NO,tra_pol_date,tra_branch,PRODUCT,pri_class_code,MECODE&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/Execution-Faild/m-p/1445808#M796506</guid>
      <dc:creator>sagaraperera</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Execution Faild</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445809#M796507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlikview.com/thread/34403" title="https://community.qlikview.com/thread/34403"&gt;https://community.qlikview.com/thread/34403&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2017 05:39:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445809#M796507</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2017-12-22T05:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Execution Faild</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445810#M796508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that Query running in SQL engine not Qlikview? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2017 05:57:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445810#M796508</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-12-22T05:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Execution Faild</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445811#M796509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try Following things:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are saving any qvd using this script then ensure that you have access to create the qvd in specified folder and also check if you are going to replace the qvd then if that qvd is used in other program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also if this query is running on sql the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;//BETWEEN '2014-01' AND '2014-08' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;comment in sql is -- instead of //&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;so replace comments accordingly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sushil&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2017 06:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-Faild/m-p/1445811#M796509</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2017-12-22T06:03:39Z</dc:date>
    </item>
  </channel>
</rss>

