<?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 Issue with timestamp 2020-01-01T00:00:00.000Z in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013239#M83740</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I was wondering if somebody encountered an issue with the timestamps that Qlik supports?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am currently trying to load data from a REST connection and I am trying to limit the data that I want to load by date, otherwise as there are too many rows, I am experiencing other issues.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using WITH CONNECTION and looks as follows:&lt;BR /&gt;&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://api-sample.url.com/sample/name" target="_blank"&gt;https://api-sample.url.com/sample/name&lt;/A&gt;",&lt;BR /&gt;QUERY "filter" "Name eq 'Company'",&lt;BR /&gt;QUERY "filter" "start gt '2022-01-01T00:00:00.000Z'",&lt;BR /&gt;HTTPHEADER "Authorization" "Bearer $(vToken)"&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;Everything works perfectly except the part where I want the loaded data to be greater than a specific time:&lt;/P&gt;
&lt;P&gt;QUERY "filter" "start gt '2022-01-01T00:00:00.000Z'",&lt;/P&gt;
&lt;P&gt;It seems that Qlik doesn't recognize this timestamp. I tried to change it in the 'Main' section of my script as below:&lt;/P&gt;
&lt;P&gt;SET TimestampFormat='YYYY-MM-DD hh:mm:ss[.fff] TT';&lt;/P&gt;
&lt;P&gt;But it still doesn't understand that I want the date to be greater than the specified one above.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Does anyone have any ideas?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 06 Dec 2022 14:58:52 GMT</pubDate>
    <dc:creator>SilviyaK</dc:creator>
    <dc:date>2022-12-06T14:58:52Z</dc:date>
    <item>
      <title>Issue with timestamp 2020-01-01T00:00:00.000Z</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013239#M83740</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I was wondering if somebody encountered an issue with the timestamps that Qlik supports?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am currently trying to load data from a REST connection and I am trying to limit the data that I want to load by date, otherwise as there are too many rows, I am experiencing other issues.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using WITH CONNECTION and looks as follows:&lt;BR /&gt;&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://api-sample.url.com/sample/name" target="_blank"&gt;https://api-sample.url.com/sample/name&lt;/A&gt;",&lt;BR /&gt;QUERY "filter" "Name eq 'Company'",&lt;BR /&gt;QUERY "filter" "start gt '2022-01-01T00:00:00.000Z'",&lt;BR /&gt;HTTPHEADER "Authorization" "Bearer $(vToken)"&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;Everything works perfectly except the part where I want the loaded data to be greater than a specific time:&lt;/P&gt;
&lt;P&gt;QUERY "filter" "start gt '2022-01-01T00:00:00.000Z'",&lt;/P&gt;
&lt;P&gt;It seems that Qlik doesn't recognize this timestamp. I tried to change it in the 'Main' section of my script as below:&lt;/P&gt;
&lt;P&gt;SET TimestampFormat='YYYY-MM-DD hh:mm:ss[.fff] TT';&lt;/P&gt;
&lt;P&gt;But it still doesn't understand that I want the date to be greater than the specified one above.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Does anyone have any ideas?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:58:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013239#M83740</guid>
      <dc:creator>SilviyaK</dc:creator>
      <dc:date>2022-12-06T14:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with timestamp 2020-01-01T00:00:00.000Z</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013306#M83744</link>
      <description>&lt;P&gt;I have had success in the past with this timestamp format used directly in a header:&amp;nbsp;&lt;SPAN&gt;yyyy-MM-dd HH:mm:ssZ, eg. "2014-09-28 16:25:09Z"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 16:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013306#M83744</guid>
      <dc:creator>Qlik_Eric_Thomas</dc:creator>
      <dc:date>2022-12-06T16:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with timestamp 2020-01-01T00:00:00.000Z</title>
      <link>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013725#M83792</link>
      <description>&lt;P&gt;Thanks for the response! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean in a header like the ones above, inside the WITH CONNECTION? Can you please give me an example as I am not sure where exactly to add it?&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 12:30:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Issue-with-timestamp-2020-01-01T00-00-00-000Z/m-p/2013725#M83792</guid>
      <dc:creator>SilviyaK</dc:creator>
      <dc:date>2022-12-07T12:30:03Z</dc:date>
    </item>
  </channel>
</rss>

