<?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: error in qlik in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544358#M109672</link>
    <description>&lt;P&gt;Based on the error, your date variables aren't getting populated or read correctly. Run in debug mode to find out exactly what's happening with those and fix the issue.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Mar 2026 11:38:28 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2026-03-09T11:38:28Z</dc:date>
    <item>
      <title>error in qlik</title>
      <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544353#M109670</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;im converting oracle code to Qlik script but am getting error while running this query&lt;/P&gt;&lt;DIV&gt;&lt;STRONG&gt;Transactions:&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;SQL SELECT&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; Transactions.report_key AS REPORT_KEY,&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; Transactions.transaction_date AS TRANSACTION_DATE_TIME,&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; SUM(Transactions.ctr_cash_in + Transactions.ctr_cash_out) AS Transaction_Amount,&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; Transactions.ctr_tin_for_dep AS Transaction_Sequence_Number&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;FROM&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; ctr_main.ctr_rpt_transactions Transactions&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;INNER JOIN&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; ctr_main.mta_relation MTA_Transactions ON Transactions.tin_for_doep = MTA_Transactions.tin&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;WHERE&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;transaction_date&amp;gt;='$(vStartdate)' and transaction_date&amp;lt;='$(vEnddate)'&amp;nbsp; &amp;nbsp;//&amp;nbsp; tried in qlik&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;//&amp;nbsp; &amp;nbsp; &amp;nbsp;Transactions.transaction_date BETWEEN :start_date AND :end_date&amp;nbsp; // original coloum&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; AND Transactions.ctr_aggregator_key IS NOT NULL&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; AND Transactions.tin_for_doep IS NOT NULL&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;GROUP BY&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; Transactions.report_key,&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; Transactions.ctr_aggregator_key,&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; MTA_Transactions.group_branch,&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; MTA_Transactions.group_number;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Tempdates:&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;load&amp;nbsp; min(transaction_date) as startdate,&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;max(transaction_date) as Enddate&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;resident Transactions;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;let vStartdate=peek('startdate',0,'Tempdates');&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;let vEnddate=peek('Enddate',0,'Tempdates');&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;drop table Tempdates;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have tried in bold letter script but its not loading failed with&amp;nbsp; attached error .can anyone help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 11:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544353#M109670</guid>
      <dc:creator>Manni_SM</dc:creator>
      <dc:date>2026-03-09T11:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: error in qlik</title>
      <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544358#M109672</link>
      <description>&lt;P&gt;Based on the error, your date variables aren't getting populated or read correctly. Run in debug mode to find out exactly what's happening with those and fix the issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 11:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544358#M109672</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2026-03-09T11:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: error in qlik</title>
      <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544362#M109674</link>
      <description>&lt;P&gt;thank you is my approach is correct?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and one more doubt - in UI&amp;nbsp; i need to use daterange filter&amp;nbsp; &amp;nbsp;start date and end date&lt;/P&gt;&lt;P&gt;so instead of where condition shall i use directly&amp;nbsp; min(trandate)&amp;nbsp; and max(trandate)&amp;nbsp; in daterange filter object?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 12:24:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544362#M109674</guid>
      <dc:creator>Manni_SM</dc:creator>
      <dc:date>2026-03-09T12:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: error in qlik</title>
      <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544373#M109679</link>
      <description>&lt;P&gt;The transactions are defining the dates and are in the same time their filter-condition. Such logic could be working if there are manual set values for the first initial load.&lt;/P&gt;&lt;P&gt;Beside this I'm not sure if the global defined dates are the same as the in the between referenced dates - are they also global or have they a context to any key-fields? Similar - what is meant with the date-ranges? Linked weeks/months/years to the date from a calendar - or ranges in regard to the keys?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 15:07:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544373#M109679</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2026-03-09T15:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: error in qlik</title>
      <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544374#M109680</link>
      <description>&lt;P&gt;Your front-end objects don't impact your load script, so, this isn't what you're after, presumably.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 15:13:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544374#M109680</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2026-03-09T15:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: error in qlik</title>
      <link>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544384#M109681</link>
      <description>&lt;P&gt;There are really two viable options for this issue.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;If your source data is not too huge then you can remove the condition for the transaction date and then use the transaction date as a filter in the dashboard so users can choose whatever dates they want to show in the sheets.&lt;/LI&gt;&lt;LI&gt;If your data is large then you could inject the values into the load script by building a dynamic view or ODAG application. In this case you would need to load the applicable range of dates into an application and provide flters where the user can choose the range of dates that they want. Then a "child" app is created that uses the selections from the first app as parameters in the load script.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;It is not very common to use the ODAG approach as usually making selections in a normal applicaiton works very well for filtering data.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 17:49:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/error-in-qlik/m-p/2544384#M109681</guid>
      <dc:creator>chriscammers</dc:creator>
      <dc:date>2026-03-09T17:49:42Z</dc:date>
    </item>
  </channel>
</rss>

