<?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: Fetch Data with the Qlik Jira Connector in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2525519#M15074</link>
    <description>&lt;P&gt;Hi!&lt;BR /&gt;You need to create a REST connection to Jira, then in the editor retrieve the total number of issues in your cloud :&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'REST_JIRA';&lt;/P&gt;&lt;P&gt;RestTotal:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"total"&lt;BR /&gt;FROM JSON (wrap on) "root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxxx/rest/api/3/search?jql=&amp;amp;startAt=0&amp;amp;maxResults=0&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxxx/rest/api/3/search?jql=&amp;amp;startAt=0&amp;amp;maxResults=0&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;LET vTotal = Peek('total', 0, 'RestTotal');&lt;/P&gt;&lt;P&gt;DROP TABLE RestTotal;&lt;/P&gt;&lt;P&gt;After that, create a loop to load all the timeoriginalestimate values for&amp;nbsp;all&amp;nbsp;the&amp;nbsp;issues :&lt;/P&gt;&lt;P&gt;LET vPageSize = 100;&lt;BR /&gt;LET vNumPages = Ceil (vTotal / vPageSize);&lt;/P&gt;&lt;P&gt;FOR vStart = 0 TO (vNumPages)-1 STEP 1&lt;BR /&gt;LET vOffset = (vStart) * (vPageSize);&lt;/P&gt;&lt;P&gt;IF vStart = 0 THEN&lt;/P&gt;&lt;P&gt;IssuesPaged:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"expand" AS "expand_u0",&lt;BR /&gt;"startAt",&lt;BR /&gt;"maxResults",&lt;BR /&gt;"total",&lt;BR /&gt;"__KEY_root",&lt;BR /&gt;(SELECT&lt;BR /&gt;"expand",&lt;BR /&gt;"id",&lt;BR /&gt;"self",&lt;BR /&gt;"key",&lt;BR /&gt;"__KEY_issues",&lt;BR /&gt;"__FK_issues",&lt;BR /&gt;(SELECT&lt;BR /&gt;"timeoriginalestimate",&lt;BR /&gt;"__FK_fields"&lt;BR /&gt;FROM "fields" FK "__FK_fields")&lt;BR /&gt;FROM "issues" PK "__KEY_issues" FK "__FK_issues")&lt;BR /&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;ELSE&lt;BR /&gt;&lt;BR /&gt;CONCATENATE(IssuesPaged)&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"expand" AS "expand_u0",&lt;BR /&gt;"startAt",&lt;BR /&gt;"maxResults",&lt;BR /&gt;"total",&lt;BR /&gt;"__KEY_root",&lt;BR /&gt;(SELECT&lt;BR /&gt;"expand",&lt;BR /&gt;"id",&lt;BR /&gt;"self",&lt;BR /&gt;"key",&lt;BR /&gt;"__KEY_issues",&lt;BR /&gt;"__FK_issues",&lt;BR /&gt;(SELECT&lt;BR /&gt;"timeoriginalestimate",&lt;BR /&gt;"__FK_fields"&lt;BR /&gt;FROM "fields" FK "__FK_fields")&lt;BR /&gt;FROM "issues" PK "__KEY_issues" FK "__FK_issues")&lt;BR /&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3searchjql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxx/rest/api/3searchjql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;END IF&lt;BR /&gt;NEXT vStart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jul 2025 14:14:37 GMT</pubDate>
    <dc:creator>Martizi</dc:creator>
    <dc:date>2025-07-28T14:14:37Z</dc:date>
    <item>
      <title>Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2440956#M13545</link>
      <description>&lt;P&gt;Is anyone familiar with the Qlik Sense Jira integrated connector?&lt;/P&gt;
&lt;P&gt;I'm trying to fetch a specific field from Jira: the Issue's original estimated time.&lt;/P&gt;
&lt;P&gt;However, the provided Jira connector script for issues doesn't seem to include this importanr field, which strikes me as odd.&lt;/P&gt;
&lt;P&gt;Does anyone have insight or suggestions on how I might access this field? I believe its original name is 'originalEstimate'."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jira Connector script for issues:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"SELECT &lt;BR /&gt;id,&lt;BR /&gt;key,&lt;BR /&gt;fields_summary,&lt;BR /&gt;fields_description,&lt;BR /&gt;fields_environment,&lt;BR /&gt;fields_created,&lt;BR /&gt;fields_lastViewed,&lt;BR /&gt;fields_updated,&lt;BR /&gt;fields_resolutiondate,&lt;BR /&gt;fields_duedate,&lt;BR /&gt;fields_labels,&lt;BR /&gt;fields_components_ids,&lt;BR /&gt;fields_components_names,&lt;BR /&gt;fields_fixVersions_ids,&lt;BR /&gt;fields_fixVersions_names,&lt;BR /&gt;fields_versions_ids,&lt;BR /&gt;fields_versions_names,&lt;BR /&gt;fields_creator_accountId,&lt;BR /&gt;fields_creator_active,&lt;BR /&gt;fields_creator_displayName,&lt;BR /&gt;fields_creator_emailAddress,&lt;BR /&gt;fields_creator_key,&lt;BR /&gt;fields_creator_name,&lt;BR /&gt;fields_creator_timeZone,&lt;BR /&gt;fields_assignee_accountId,&lt;BR /&gt;fields_assignee_active,&lt;BR /&gt;fields_assignee_displayName,&lt;BR /&gt;fields_assignee_emailAddress,&lt;BR /&gt;fields_assignee_key,&lt;BR /&gt;fields_assignee_name,&lt;BR /&gt;fields_assignee_timeZone,&lt;BR /&gt;fields_reporter_accountId,&lt;BR /&gt;fields_reporter_active,&lt;BR /&gt;fields_reporter_displayName,&lt;BR /&gt;fields_reporter_emailAddress,&lt;BR /&gt;fields_reporter_key,&lt;BR /&gt;fields_reporter_name,&lt;BR /&gt;fields_reporter_timeZone,&lt;BR /&gt;fields_issuetype_description,&lt;BR /&gt;fields_issuetype_iconUrl,&lt;BR /&gt;fields_issuetype_id,&lt;BR /&gt;fields_issuetype_name,&lt;BR /&gt;fields_issuetype_subtask,&lt;BR /&gt;fields_priority_iconUrl,&lt;BR /&gt;fields_priority_id,&lt;BR /&gt;fields_priority_name,&lt;BR /&gt;fields_status_id,&lt;BR /&gt;fields_status_name,&lt;BR /&gt;fields_status_description,&lt;BR /&gt;fields_status_iconUrl,&lt;BR /&gt;fields_resolution_id,&lt;BR /&gt;fields_resolution_name,&lt;BR /&gt;fields_resolution_description,&lt;BR /&gt;fields_votes_hasVoted,&lt;BR /&gt;fields_votes_votes,&lt;BR /&gt;fields_watches_isWatching,&lt;BR /&gt;fields_watches_watchCount,&lt;BR /&gt;fields_parent_key,&lt;BR /&gt;fields_parent_id,&lt;BR /&gt;fields_subtasks_ids,&lt;BR /&gt;fields_subtasks_keys,&lt;BR /&gt;fields_issuelinks_ids,&lt;BR /&gt;fields_issuelinks_keys,&lt;BR /&gt;fields_outwardIssueLinks,&lt;BR /&gt;fields_inwardIssueLinks&lt;BR /&gt;FROM Issues&lt;BR /&gt;WITH PROPERTIES (&lt;BR /&gt;projectIdOrKey='$(vProjectId)',&lt;BR /&gt;createdAfter='',&lt;BR /&gt;createdBefore='',&lt;BR /&gt;updatedAfter='',&amp;nbsp;&lt;BR /&gt;updatedBefore='',&lt;BR /&gt;customFieldIds='',&lt;BR /&gt;jqlQuery='',&lt;BR /&gt;maxResults=''&lt;BR /&gt;);"&lt;/P&gt;</description>
      <pubDate>Sat, 13 Apr 2024 20:34:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2440956#M13545</guid>
      <dc:creator>Fq</dc:creator>
      <dc:date>2024-04-13T20:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2440960#M13546</link>
      <description>&lt;P&gt;Is that a custom field? If so, you need to get, from tje customfields table, the name of the custom field and add to your script.&lt;/P&gt;
&lt;P&gt;Here is an example with a custom field ID equals to&amp;nbsp;10010.&lt;/P&gt;
&lt;P&gt;There are 2 steps.&lt;/P&gt;
&lt;P&gt;1. add this to the SQL in the list of fields.&lt;/P&gt;
&lt;P&gt;fields_customfield_10010_XML&lt;/P&gt;
&lt;P&gt;2. Add this to the Qlik preceding load:&lt;/P&gt;
&lt;P&gt;TextBetween(fields_customfield_10010_XML, '&amp;lt;name&amp;gt;', '&amp;lt;/name&amp;gt;') As [Request Type]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2024 03:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2440960#M13546</guid>
      <dc:creator>igoralcantara</dc:creator>
      <dc:date>2024-04-14T03:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2440998#M13548</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;igoralcantara, thanks for your answer.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I found the following information in a table called "Fields" that appears with the integrated Jira Connector.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fq_3-1713120462731.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/164053iA3684F45354768CF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Fq_3-1713120462731.png" alt="Fq_3-1713120462731.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I can see it says false in the custom column, so not sure it is considered as a custom field, so not sure how I should proceed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;FQ.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2024 19:03:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2440998#M13548</guid>
      <dc:creator>Fq</dc:creator>
      <dc:date>2024-04-14T19:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2441242#M13551</link>
      <description>&lt;P&gt;If that field matches the field you are looking for, then, this is your guy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just use my logic as an example but with your field ID instead.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2024 12:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2441242#M13551</guid>
      <dc:creator>igoralcantara</dc:creator>
      <dc:date>2024-04-15T12:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2444375#M13594</link>
      <description>&lt;P&gt;Hi Igor,&lt;/P&gt;
&lt;P&gt;It didn´t work, but also I noticed that is not the field.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did a get API call using python to the issues JIRA data, and got a JSON response where the field is within a dictionary called "timetracking". What I need is&amp;nbsp;originalEstimate.&lt;/P&gt;
&lt;PRE&gt;"timetracking":{"originalEstimate":"1w 2d","remainingEstimate":"1w 1d 4h","timeSpent":"4h","originalEstimateSeconds":201600,"remainingEstimateSeconds":187200,"timeSpentSeconds":14400}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;However not sure how to achieve that with the SQL list of fields or using your logic.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Francisco.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 13:29:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2444375#M13594</guid>
      <dc:creator>Fq</dc:creator>
      <dc:date>2024-04-24T13:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2459447#M13772</link>
      <description>&lt;P&gt;We have the same problem, the field "timeoriginalestimate" is not in the issues table. And you cannot add the field as a custom field because it has no ID as shown in the screenshot.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 12:29:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2459447#M13772</guid>
      <dc:creator>domanski</dc:creator>
      <dc:date>2024-06-05T12:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2503562#M14526</link>
      <description>&lt;P&gt;Were you able to fix this issue? Did you found the solution how to retrive informaction about timetracking?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 14:47:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2503562#M14526</guid>
      <dc:creator>greg_lag</dc:creator>
      <dc:date>2025-01-29T14:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2503563#M14527</link>
      <description>&lt;P&gt;did you fount the solution?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 14:48:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2503563#M14527</guid>
      <dc:creator>greg_lag</dc:creator>
      <dc:date>2025-01-29T14:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2517779#M14890</link>
      <description>&lt;P&gt;Hey Greg... I have the exact same issue, did you find a solution for it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is very annoying&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eugenia Castilla&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 12:44:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2517779#M14890</guid>
      <dc:creator>EugeniaCastilla</dc:creator>
      <dc:date>2025-05-14T12:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2517827#M14894</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/200456"&gt;@Fq&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i guess your field is in the custom fields table, so you will need to find the field ID by using the connector&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_0-1747259508091.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180487i6CE29F200897F866/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_0-1747259508091.png" alt="RafaelBarrios_0-1747259508091.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;once you have the field ID you can add it to your issues query&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_1-1747259543730.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180488i82FCAEE41A5E5EED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_1-1747259543730.png" alt="RafaelBarrios_1-1747259543730.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your script will look like this one&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_2-1747259570204.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180489iA3AF51423BBA65BA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_2-1747259570204.png" alt="RafaelBarrios_2-1747259570204.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and field will be available&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_3-1747259650594.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180490i5C5F2D57618BF7E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_3-1747259650594.png" alt="RafaelBarrios_3-1747259650594.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;once you make it work, you can try first query "fields" table and dinamicaly add them to your "issues" query.&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;important&lt;/STRONG&gt;: there is a limitation on the number of fields o characters you can add in the customsID fiels, so you may need to iterate to load all fields&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;help users find answers! Don't forget to&amp;nbsp;&lt;FONT color="#993366"&gt;mark a solution&lt;/FONT&gt;&amp;nbsp;that worked for you &amp;amp; to smash the&amp;nbsp;&lt;FONT color="#339966"&gt;like button&lt;/FONT&gt;!&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 21:58:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2517827#M14894</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2025-05-14T21:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2525519#M15074</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;You need to create a REST connection to Jira, then in the editor retrieve the total number of issues in your cloud :&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'REST_JIRA';&lt;/P&gt;&lt;P&gt;RestTotal:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"total"&lt;BR /&gt;FROM JSON (wrap on) "root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxxx/rest/api/3/search?jql=&amp;amp;startAt=0&amp;amp;maxResults=0&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxxx/rest/api/3/search?jql=&amp;amp;startAt=0&amp;amp;maxResults=0&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;LET vTotal = Peek('total', 0, 'RestTotal');&lt;/P&gt;&lt;P&gt;DROP TABLE RestTotal;&lt;/P&gt;&lt;P&gt;After that, create a loop to load all the timeoriginalestimate values for&amp;nbsp;all&amp;nbsp;the&amp;nbsp;issues :&lt;/P&gt;&lt;P&gt;LET vPageSize = 100;&lt;BR /&gt;LET vNumPages = Ceil (vTotal / vPageSize);&lt;/P&gt;&lt;P&gt;FOR vStart = 0 TO (vNumPages)-1 STEP 1&lt;BR /&gt;LET vOffset = (vStart) * (vPageSize);&lt;/P&gt;&lt;P&gt;IF vStart = 0 THEN&lt;/P&gt;&lt;P&gt;IssuesPaged:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"expand" AS "expand_u0",&lt;BR /&gt;"startAt",&lt;BR /&gt;"maxResults",&lt;BR /&gt;"total",&lt;BR /&gt;"__KEY_root",&lt;BR /&gt;(SELECT&lt;BR /&gt;"expand",&lt;BR /&gt;"id",&lt;BR /&gt;"self",&lt;BR /&gt;"key",&lt;BR /&gt;"__KEY_issues",&lt;BR /&gt;"__FK_issues",&lt;BR /&gt;(SELECT&lt;BR /&gt;"timeoriginalestimate",&lt;BR /&gt;"__FK_fields"&lt;BR /&gt;FROM "fields" FK "__FK_fields")&lt;BR /&gt;FROM "issues" PK "__KEY_issues" FK "__FK_issues")&lt;BR /&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;ELSE&lt;BR /&gt;&lt;BR /&gt;CONCATENATE(IssuesPaged)&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"expand" AS "expand_u0",&lt;BR /&gt;"startAt",&lt;BR /&gt;"maxResults",&lt;BR /&gt;"total",&lt;BR /&gt;"__KEY_root",&lt;BR /&gt;(SELECT&lt;BR /&gt;"expand",&lt;BR /&gt;"id",&lt;BR /&gt;"self",&lt;BR /&gt;"key",&lt;BR /&gt;"__KEY_issues",&lt;BR /&gt;"__FK_issues",&lt;BR /&gt;(SELECT&lt;BR /&gt;"timeoriginalestimate",&lt;BR /&gt;"__FK_fields"&lt;BR /&gt;FROM "fields" FK "__FK_fields")&lt;BR /&gt;FROM "issues" PK "__KEY_issues" FK "__FK_issues")&lt;BR /&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3searchjql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxx/rest/api/3searchjql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;END IF&lt;BR /&gt;NEXT vStart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 14:14:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2525519#M15074</guid>
      <dc:creator>Martizi</dc:creator>
      <dc:date>2025-07-28T14:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2525658#M15077</link>
      <description>&lt;P&gt;If you want to have the Key and TimeOriginalEstimate fields linked for&amp;nbsp;all&amp;nbsp;tickets:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'REST_JIRA';&lt;/P&gt;&lt;P&gt;RestTotal:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"total"&lt;BR /&gt;FROM JSON (wrap on) "root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3/search?jql=&amp;amp;startAt=0&amp;amp;maxResults=0&amp;amp;fields=timeoriginalestimate" target="_blank"&gt;https://xxx/rest/api/3/search?jql=&amp;amp;startAt=0&amp;amp;maxResults=0&amp;amp;fields=timeoriginalestimate&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;LET vTotal = Peek('total', 0, 'RestTotal');&lt;/P&gt;&lt;P&gt;DROP TABLE RestTotal;&lt;/P&gt;&lt;P&gt;LET vPageSize = 100;&lt;BR /&gt;LET vNumPages = Ceil (vTotal / vPageSize);&lt;/P&gt;&lt;P&gt;FOR vStart = 0 TO (vNumPages)-1 STEP 1&lt;BR /&gt;LET vOffset = (vStart) * (vPageSize);&lt;/P&gt;&lt;P&gt;IF vStart = 0 THEN&lt;/P&gt;&lt;P&gt;IssuesPaged:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"__KEY_root",&lt;BR /&gt;(SELECT&lt;BR /&gt;"expand",&lt;BR /&gt;"id",&lt;BR /&gt;"self",&lt;BR /&gt;"key",&lt;BR /&gt;"__KEY_issues",&lt;BR /&gt;"__FK_issues",&lt;BR /&gt;(SELECT&lt;BR /&gt;"timeoriginalestimate",&lt;BR /&gt;"__FK_fields"&lt;BR /&gt;FROM "fields" FK "__FK_fields")&lt;BR /&gt;FROM "issues" PK "__KEY_issues" FK "__FK_issues")&lt;BR /&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&amp;amp;orderby=id" target="_blank"&gt;https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&amp;amp;orderby=id&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;Key:&lt;BR /&gt;Load&lt;BR /&gt;key,&lt;BR /&gt;__KEY_issues&lt;/P&gt;&lt;P&gt;RESIDENT IssuesPaged&lt;BR /&gt;where not isnull(key);&lt;/P&gt;&lt;P&gt;Time:&lt;BR /&gt;Load&lt;BR /&gt;timeoriginalestimate/3600 AS StimaOriginale ,&lt;BR /&gt;__FK_fields as __KEY_issues&lt;/P&gt;&lt;P&gt;RESIDENT IssuesPaged;&lt;/P&gt;&lt;P&gt;ELSE&lt;BR /&gt;&lt;BR /&gt;TempPaged:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"__KEY_root",&lt;BR /&gt;(SELECT&lt;BR /&gt;"expand",&lt;BR /&gt;"id",&lt;BR /&gt;"self",&lt;BR /&gt;"key",&lt;BR /&gt;"__KEY_issues",&lt;BR /&gt;"__FK_issues",&lt;BR /&gt;(SELECT&lt;BR /&gt;"timeoriginalestimate",&lt;BR /&gt;"__FK_fields"&lt;BR /&gt;FROM "fields" FK "__FK_fields")&lt;BR /&gt;FROM "issues" PK "__KEY_issues" FK "__FK_issues")&lt;BR /&gt;FROM JSON (wrap on) "root" PK "__KEY_root"&lt;BR /&gt;WITH CONNECTION (&lt;BR /&gt;URL "&lt;A href="https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&amp;amp;orderby=id" target="_blank"&gt;https://xxx/rest/api/3/search?jql=&amp;amp;startAt=$(vOffset)&amp;amp;maxResults=$(vPageSize)&amp;amp;fields=timeoriginalestimate&amp;amp;orderby=id&lt;/A&gt;");&lt;/P&gt;&lt;P&gt;CONCATENATE(Key)&lt;BR /&gt;LOAD&lt;BR /&gt;key,&lt;BR /&gt;__KEY_issues &amp;amp;'-'&amp;amp; $(vStart) as __KEY_issues&lt;BR /&gt;RESIDENT TempPaged&lt;BR /&gt;where not isnull(key);&lt;/P&gt;&lt;P&gt;CONCATENATE(Time)&lt;BR /&gt;LOAD&lt;BR /&gt;timeoriginalestimate/3600 as StimaOriginale,&lt;BR /&gt;__FK_fields &amp;amp;'-'&amp;amp; $(vStart) as __KEY_issues&lt;BR /&gt;RESIDENT TempPaged;&lt;/P&gt;&lt;P&gt;CONCATENATE(IssuesPaged)&lt;BR /&gt;LOAD *&lt;BR /&gt;RESIDENT TempPaged;&lt;/P&gt;&lt;P&gt;DROP TABLE TempPaged;&lt;/P&gt;&lt;P&gt;END IF&lt;BR /&gt;NEXT vStart&lt;/P&gt;&lt;P&gt;DROP TABLE IssuesPaged;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jul 2025 20:07:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2525658#M15077</guid>
      <dc:creator>Martizi</dc:creator>
      <dc:date>2025-07-29T20:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch Data with the Qlik Jira Connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2542362#M15375</link>
      <description>&lt;P&gt;It is not a custom field though.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 11:02:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Fetch-Data-with-the-Qlik-Jira-Connector/m-p/2542362#M15375</guid>
      <dc:creator>EmmaDoherty</dc:creator>
      <dc:date>2026-02-04T11:02:01Z</dc:date>
    </item>
  </channel>
</rss>

