<?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 Salesforce Connector Question - Date in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Salesforce-Connector-Question-Date/m-p/1083742#M4802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm tyrin got use the salesforce connector in Qlik Senes to pull data out of a few salesfoce tables using the Bulk API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything is working fine, but I'm trying to add a "where" to the select statement to limit the data set by a date.&amp;nbsp; I seem to be messing up the syntax, so the load is erroring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know the right way to specify the statement with a date so it will work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Id as [Case_c], &lt;/P&gt;&lt;P&gt;&amp;nbsp; IsDeleted as [IsDeleted_Case], &lt;/P&gt;&lt;P&gt;&amp;nbsp; CaseNumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate as [CreatedDate_Case],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClosedDate as [ClosedDate_Case];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp; IsDeleted, &lt;/P&gt;&lt;P&gt;&amp;nbsp; CaseNumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClosedDate&lt;/P&gt;&lt;P&gt;FROM Case&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;WHERE CreatedDate &amp;gt; 2016-01-01 00:00:00&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Mar 2016 23:39:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-03-28T23:39:55Z</dc:date>
    <item>
      <title>Salesforce Connector Question - Date</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Salesforce-Connector-Question-Date/m-p/1083742#M4802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm tyrin got use the salesforce connector in Qlik Senes to pull data out of a few salesfoce tables using the Bulk API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything is working fine, but I'm trying to add a "where" to the select statement to limit the data set by a date.&amp;nbsp; I seem to be messing up the syntax, so the load is erroring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know the right way to specify the statement with a date so it will work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Id as [Case_c], &lt;/P&gt;&lt;P&gt;&amp;nbsp; IsDeleted as [IsDeleted_Case], &lt;/P&gt;&lt;P&gt;&amp;nbsp; CaseNumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate as [CreatedDate_Case],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClosedDate as [ClosedDate_Case];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp; IsDeleted, &lt;/P&gt;&lt;P&gt;&amp;nbsp; CaseNumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClosedDate&lt;/P&gt;&lt;P&gt;FROM Case&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;WHERE CreatedDate &amp;gt; 2016-01-01 00:00:00&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 23:39:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Salesforce-Connector-Question-Date/m-p/1083742#M4802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-28T23:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Salesforce Connector Question - Date</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Salesforce-Connector-Question-Date/m-p/1083743#M4803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This format has worked for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let SF_Date =TimeStamp($(Last_Modified_Date),'YYYY-MM-DD')&amp;amp;'T00:00:01Z';&lt;/P&gt;&lt;P&gt;In your case &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;WHERE CreatedDate &amp;gt; &lt;/EM&gt;&lt;/STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;2016-01-01T00:00:00Z&amp;nbsp; should work.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2016 18:44:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Salesforce-Connector-Question-Date/m-p/1083743#M4803</guid>
      <dc:creator>ehr</dc:creator>
      <dc:date>2016-06-14T18:44:12Z</dc:date>
    </item>
  </channel>
</rss>

