<?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: Script for Limited SFDC data load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031168#M348125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know these connector but assume it will be based on sql - therefore should your query look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table:&lt;/P&gt;&lt;P&gt;SQL Select Field1, Field2, Field3 From YourSFDC &lt;STRONG&gt;where year(created_date) = 2015&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This meant you need to manually adjust the output from the wizard to the above where-clause (you might need to adjust the fieldname for your date-field, too or if there is a year-field available you could use this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jan 2016 09:50:45 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2016-01-06T09:50:45Z</dc:date>
    <item>
      <title>Script for Limited SFDC data load</title>
      <link>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031167#M348124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to load SFDC data (I have the connector working) but because the data sets are so large I need to limit the data loaded e.g. get only SFDC opportunities created in 2015.&amp;nbsp; I was trying to use the data connector wizard but there isn't an option to filter within it.&amp;nbsp; Might someone be able to share a simple sample SFDC data load script that uses filter to limit data load by date to get me going?&amp;nbsp; I have a feeling that this is accomplished with SQL or SOQL but I'm not well versed in these queries... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I today stage my SFDC data in excel and it is too cumbersome for refreshes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;BR /&gt;Pia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 22:16:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031167#M348124</guid>
      <dc:creator />
      <dc:date>2016-01-05T22:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Limited SFDC data load</title>
      <link>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031168#M348125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know these connector but assume it will be based on sql - therefore should your query look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table:&lt;/P&gt;&lt;P&gt;SQL Select Field1, Field2, Field3 From YourSFDC &lt;STRONG&gt;where year(created_date) = 2015&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This meant you need to manually adjust the output from the wizard to the above where-clause (you might need to adjust the fieldname for your date-field, too or if there is a year-field available you could use this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 09:50:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031168#M348125</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-01-06T09:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Limited SFDC data load</title>
      <link>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031169#M348126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; My issue was pretty simple, didn't know where to place the "where" and how to define it.&amp;nbsp; Sample script looks like this.&amp;nbsp; Will try the year(CreatedDate) next as that seems simpler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'Salesforce_BULK';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Id, &lt;/P&gt;&lt;P&gt; Status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Id, &lt;/P&gt;&lt;P&gt; Status, &lt;/P&gt;&lt;P&gt; CreatedDate&lt;/P&gt;&lt;P&gt;FROM Lead WHERE CreatedDate &amp;gt; 2015-01-01T00:00:01Z;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 07:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1031169#M348126</guid>
      <dc:creator />
      <dc:date>2016-01-14T07:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Limited SFDC data load</title>
      <link>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1692685#M450713</link>
      <description>&lt;P&gt;Hi Pia,&lt;/P&gt;&lt;P&gt;The Open Source Dashboard for Salesforce (&lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;EM&gt;OSD&lt;/EM&gt;&lt;/STRONG&gt;&lt;FONT color="#00FF00"&gt;&lt;STRONG&gt;&lt;EM&gt;4&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;EM&gt;SF&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;) includes a working example of date filtering in SQL queries against SalesForce.&lt;/P&gt;&lt;P&gt;The entire dashboard, including functional ETL and Dashboard UI components, is posted at the following GitHub link:&amp;nbsp;&lt;A href="https://github.com/qlikperf/OSD4SF/blob/master/README.md" target="_blank"&gt;https://github.com/qlikperf/OSD4SF/blob/master/README.md&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The&amp;nbsp; works &lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;EM&gt;OSD&lt;/EM&gt;&lt;/STRONG&gt;&lt;FONT color="#00FF00"&gt;&lt;STRONG&gt;&lt;EM&gt;4&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;EM&gt;SF&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;works with both of the top 2 BI products, QlikView&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;and&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;Qlik Sense.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 16:13:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-for-Limited-SFDC-data-load/m-p/1692685#M450713</guid>
      <dc:creator>DataWrangler</dc:creator>
      <dc:date>2020-04-10T16:13:19Z</dc:date>
    </item>
  </channel>
</rss>

