<?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 rest connector pagination in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366759#M615131</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 try to use the Rest Connector pagination&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/171307_Screenshot_1.png" style="height: 542px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After load I get in table 8475 lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/171311_Screenshot_2.png" style="height: 507px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;But in this tables I get not distinct lines ( only 25 distinct lines) &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_3.png" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/171312_Screenshot_3.png" style="height: 287px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2017 13:17:03 GMT</pubDate>
    <dc:creator>MA1</dc:creator>
    <dc:date>2017-07-25T13:17:03Z</dc:date>
    <item>
      <title>rest connector pagination</title>
      <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366759#M615131</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 try to use the Rest Connector pagination&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/171307_Screenshot_1.png" style="height: 542px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After load I get in table 8475 lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/171311_Screenshot_2.png" style="height: 507px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;But in this tables I get not distinct lines ( only 25 distinct lines) &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_3.png" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/171312_Screenshot_3.png" style="height: 287px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 13:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366759#M615131</guid>
      <dc:creator>MA1</dc:creator>
      <dc:date>2017-07-25T13:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: rest connector pagination</title>
      <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366760#M615132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Maryna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had also a lot of trouble using the pagination in REST API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a similar problem :&lt;/P&gt;&lt;P&gt;I am using REST API with JIRA.&lt;/P&gt;&lt;P&gt;I used Pagination : None and the pagination was managed in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code was :&lt;/P&gt;&lt;P&gt;// Implement the logic to retrieve the total records from the REST source and assign to the 'total'&lt;/P&gt;&lt;P&gt;// Getting the "total" value from the first API URL call&lt;/P&gt;&lt;P&gt;totalTable:&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "total" AS "total_u1"&lt;/P&gt;&lt;P&gt;FROM JSON (wrap on) "root";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//This variable is a total of JIRA entries. Will be used later in 'For' loop&lt;/P&gt;&lt;P&gt;LET total = Peek('total_u1',0,'totalTable');&lt;/P&gt;&lt;P&gt;DROP Table totalTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET totalfetched = 0;&lt;/P&gt;&lt;P&gt;LET startAt = 0;&lt;/P&gt;&lt;P&gt;LET pageSize = 999;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR startAt = 0 to total&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE "startAt: " $(startAt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RestConnectorMasterTable:&lt;/P&gt;&lt;P&gt;SQL SELECT &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "expand" AS "expand_u0",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "startAt",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "maxResults",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "total" AS "total_u1",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "__KEY_root",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SELECT &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITH CONNECTION(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QUERY "startAt" "$(startAt)"&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;// Change URL included in 'WITH CONNECTION' as needed to support pagination for the REST source.&lt;/P&gt;&lt;P&gt;// Please see the documentation for "Loading paged data."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;startAt = startAt + pageSize;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT startAt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the pages have been read, but on each page the identifiers are repeated. &lt;/P&gt;&lt;P&gt;So instead of having the identifiers from 1 to 5000, I have 5 times 1, 5 times 1.... 5 times 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution was to use Pagination "Offset":&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2018-01-31_15h15_28.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/192172_2018-01-31_15h15_28.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is really strange, this solution works on our server.&lt;/P&gt;&lt;P&gt;Bur when I try to use this solution on my desktop, it does not get all the JIRA issues (if gets only 9400 out of 46000 ?!!!!).&lt;/P&gt;&lt;P&gt;And the best part is : The solution with pagination "None" and the scripting works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maryna, you could maybe try out the solution with the scripting...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2018 13:59:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366760#M615132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-01T13:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: rest connector pagination</title>
      <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366761#M615133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="color: #000000;"&gt;Tanja,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; Recently we got the requirement to connect to JIRA in Qliksense. We have connected to JIRA successfully using Rest connector.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Here I have one doubt. we have multiple APIs in JIRA Site to connect like Projects,Issues and comments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;first we have tried to extract the Issues. So entered the below URL and by enting Username and PW created a connection&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and extracted the ISSUE root tables.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: #575757;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/" style="font-weight: inherit; font-style: inherit; font-size: 14.6667px; font-family: inherit; color: #3778c7;"&gt;https://&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;xxxxxxxxxxxxxxx&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;/rest/api/2/Issues&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;Next to extract Project again do we have to create a new connection, because for Projects we have the different api url like below&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: inherit; color: #575757;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/" style="font-weight: inherit; font-style: inherit; font-size: 14.6667px; font-family: inherit; color: #3778c7;"&gt;https://&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: inherit;"&gt;xxxxxxxxxxxxxxx&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: inherit;"&gt;/rest/api/2/Project&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;Please let me know for each api extraction do we have to create a new connection or is there any better way.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;Also right now we are pulling the apis just by entering the URL,Username and Password. We haven't used the Pagination. Without pagination do we&amp;nbsp; assume we were pulling all the records in the API? Please help me on this.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif;"&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;H6 style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/H6&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 05:16:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366761#M615133</guid>
      <dc:creator>mahitham</dc:creator>
      <dc:date>2018-03-05T05:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: rest connector pagination</title>
      <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366762#M615134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manitha,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I don't think it's possible to avoid multiple connections if you have different URLs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In QlikView, if you don't use pagination, you will be pulling the maximum number of records determined by JIRA (generally 1000 records).&lt;/P&gt;&lt;P&gt;If you have a lot of records you will probably need pagination.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;As you're using QlikSense this might be different, so you should verify that you're pulling everything in one call.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Kind regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Tanja&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 08:15:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366762#M615134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-05T08:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: rest connector pagination</title>
      <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366763#M615135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #666666;"&gt;1. Still now i am following the procedure like this.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #666666;"&gt;I have created three different Jira connections by entering Issues ,Projects and Search APIs on URL's as separate and pulling the tables into QVDs. In the created connection I am entering only URL like &lt;/SPAN&gt;&lt;SPAN style="color: #666666; font-style: inherit; font-size: 11.0pt; font-family: 'Calibri','sans-serif'; font-weight: inherit;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/"&gt;https://&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;xxxxxxxxxxxxxxx&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;/rest/api/2/Issues and selecting Method as GET then entering username and Password.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #666666;"&gt;Please confirm is this correct procedure&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found a page with a lot of information concerning REST API :&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/connectors/Subsystems/REST_connector_help/Content/Create-REST-connection/Create-REST-connection.htm" title="https://help.qlik.com/en-US/connectors/Subsystems/REST_connector_help/Content/Create-REST-connection/Create-REST-connection.htm"&gt;https://help.qlik.com/en-US/connectors/Subsystems/REST_connector_help/Content/Create-REST-connection/Create-REST-connect…&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #666666;"&gt;2. In the Search Api which is like below &lt;SPAN style="font-size: 11pt; font-family: Calibri, sans-serif;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/"&gt;https://&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;xxxxxxxxxxxxxxx&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;/rest/api/2/search contains the many tables like &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 11.0pt; font-family: 'Calibri','sans-serif'; font-weight: inherit;"&gt;Customfield_10409,Customfield_11102 etc... and one Fields table contains customfield_11100 as records.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 11.0pt; font-family: 'Calibri','sans-serif'; font-weight: inherit;"&gt;Could you please explain about this API with custom fields what is the best way to join all these tables under search api.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to read a lot of tables (&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;Customfield_10409,Customfield_11102 etc... ), QlikView generates the script for you and reads the neccessary fields. Those tables are linked to a table named [fields].&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;If I need to do a join afterwards, I use the LOOKUP function :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;JIRA_API_WATCHES:&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD &lt;/P&gt;&lt;P&gt;__KEY_fields&lt;/P&gt;&lt;P&gt;, WATCHES&lt;/P&gt;&lt;P&gt;FROM [$(RepertoireQVDBRUT)JIRA_API_WATCHES.qvd](qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JIRA_API_FIELDS :&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD &lt;/P&gt;&lt;P&gt;[RESOLUTIONDATE]&lt;/P&gt;&lt;P&gt;, [CREATED]&lt;/P&gt;&lt;P&gt;, [DESCRIPTION]&lt;/P&gt;&lt;P&gt;, [SUMMARY]&lt;/P&gt;&lt;P&gt;,[RESOLUTION]&lt;/P&gt;&lt;P&gt;, [__KEY_issues]&lt;/P&gt;&lt;P&gt;, Lookup('WATCHES', '__KEY_fields', __KEY_fields, 'JIRA_API_WATCHES') as [WATCHES]&lt;/P&gt;&lt;P&gt;FROM [$(RepertoireQVDBRUT)JIRA_API_FIELDS.qvd](qvd);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;Kind regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt;Tanja&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #3d3d3d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2018 13:34:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366763#M615135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-06T13:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: rest connector pagination</title>
      <link>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366764#M615136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Tanja &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2018 14:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rest-connector-pagination/m-p/1366764#M615136</guid>
      <dc:creator>mahitham</dc:creator>
      <dc:date>2018-03-06T14:08:38Z</dc:date>
    </item>
  </channel>
</rss>

