<?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>article How to export Qlik Sense Apps from source to a target shared space using Qlik Application Automation in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/ta-p/2058641</link>
    <description>&lt;P&gt;&lt;SPAN&gt;This article gives an overview of exporting the Qlik Sense apps from the source to a target shared space for backup purposes using Qlik Application Automation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;It explains a basic example of a template configured in Qlik Application Automation for this scenario.&lt;/P&gt;
&lt;P&gt;You can make use of the template which is available in the template picker. You can find it by navigating to Add new -&amp;gt; New automation -&amp;gt; Search templates and searching for 'Export an app to a shared space as a backup' in the search bar and clicking on the Use template option in order to use it in the automation.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You will find a version of this automation attached to this article: "Export-app-to-shared-space.json". More information on importing automations can be found&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Knowledge-Base/How-to-upload-and-download-blends/ta-p/1781602" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 id="toc-hId-1317109074"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Full Automation&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="backup-app-shared-space.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104780iF00058EC96DD1A0A/image-size/large?v=v2&amp;amp;px=999" role="button" title="backup-app-shared-space.png" alt="backup-app-shared-space.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="backup-app-shared-space1.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104781iEF89E766F0299587/image-size/large?v=v2&amp;amp;px=999" role="button" title="backup-app-shared-space1.png" alt="backup-app-shared-space1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H5&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;&lt;STRONG&gt;Variables used in the template&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;&lt;STRONG&gt;:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;SourceSpaceID:&lt;/STRONG&gt;&amp;nbsp;The variable used to&amp;nbsp;define source space ID.&amp;nbsp;Please provide a shared space ID since copying an app from managed space is not permitted.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;TargetSpaceID:&lt;/STRONG&gt;&amp;nbsp;The variable&amp;nbsp;used to&amp;nbsp;define target space ID. Please provide a shared space ID since copying an app to managed space is not permitted.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;AppCount:&lt;/STRONG&gt;&amp;nbsp;The variable is used to get the count of apps exported to the target space successfully. Initially set this variable to 0.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H5 id="toc-hId--1601348018"&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;&lt;STRONG&gt;Automation structure:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI&gt;Add the 'List Apps' block to get all the existing apps in the target shared space. Configure it to use the &lt;STRONG&gt;TargetSpaceID&lt;/STRONG&gt; variable as the Space ID.&lt;/LI&gt;
&lt;LI&gt;Add the 'Get Space' block to fetch the details of the source shared space. Configure it to use the &lt;STRONG&gt;SourceSpaceID&lt;/STRONG&gt; variable as the Space ID.&lt;/LI&gt;
&lt;LI&gt;Add the 'List Apps' block to get all the existing apps in the source shared space. Configure it to use the &lt;STRONG&gt;SourceSpaceID&lt;/STRONG&gt; variable as the Space ID.&lt;/LI&gt;
&lt;LI&gt;Add the 'Filter List' block to get the apps that already exist in the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if there are any apps from the source shared space that already exist in the target shared space.&amp;nbsp;
&lt;OL&gt;
&lt;LI&gt;If the condition block&amp;nbsp;outcome evaluates to true:
&lt;UL&gt;
&lt;LI&gt;Add the 'Delete App' block to remove the previous version of the source app from the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Copy App' block to copy the app from the source shared space to the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if the app from the source shared space was successfully exported to the target shared space.&lt;/LI&gt;
&lt;LI&gt;If yes,&amp;nbsp;Add 1 to the 'AppCount' variable during each iteration. This variable will provide the total number of apps that have been backed up to the target shared space.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;If the condition block&amp;nbsp;outcome evaluates to false:
&lt;UL&gt;
&lt;LI&gt;Add the 'Copy App' block to copy the app from the source shared space to the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if the app from the source shared space was successfully exported to the target shared space.&lt;/LI&gt;
&lt;LI&gt;If yes,&amp;nbsp;Add 1 to the 'AppCount' variable during each iteration. This variable will provide the total number of apps that have been backed up to the target shared space.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if there are any apps that were exported to the target shared space successfully.&lt;/LI&gt;
&lt;LI&gt;If yes, add an 'Update Run Title' block to specify the number of apps that have been exported to the target shared space successfully. The job title is visible when looking at the automation history and My Automation Runs Overview.&amp;nbsp;For more info:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_QlikAutomation/advanced/update-run-title.htm" target="_blank" rel="nofollow noopener noreferrer"&gt;Update run title block | Qlik Cloud Help&amp;nbsp;&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;Related Content&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT style="--darkreader-inline-color: #72ff72;" color="#008000" data-darkreader-inline-color=""&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/CI-CD-pipelines-for-Qlik-Sense-apps-with-automations-and-Github/ta-p/1860837" target="_self"&gt;Export Qlik Sense Apps to GitHub&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="Qlik Cloud" id="qlikSenseEnterpriseSaaS"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Application Automation" id="qlikApplicationAutomation"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 May 2023 09:08:35 GMT</pubDate>
    <dc:creator>AfeefaTk</dc:creator>
    <dc:date>2023-05-17T09:08:35Z</dc:date>
    <item>
      <title>How to export Qlik Sense Apps from source to a target shared space using Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/ta-p/2058641</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This article gives an overview of exporting the Qlik Sense apps from the source to a target shared space for backup purposes using Qlik Application Automation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;It explains a basic example of a template configured in Qlik Application Automation for this scenario.&lt;/P&gt;
&lt;P&gt;You can make use of the template which is available in the template picker. You can find it by navigating to Add new -&amp;gt; New automation -&amp;gt; Search templates and searching for 'Export an app to a shared space as a backup' in the search bar and clicking on the Use template option in order to use it in the automation.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You will find a version of this automation attached to this article: "Export-app-to-shared-space.json". More information on importing automations can be found&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Knowledge-Base/How-to-upload-and-download-blends/ta-p/1781602" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 id="toc-hId-1317109074"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Full Automation&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="backup-app-shared-space.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104780iF00058EC96DD1A0A/image-size/large?v=v2&amp;amp;px=999" role="button" title="backup-app-shared-space.png" alt="backup-app-shared-space.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="backup-app-shared-space1.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104781iEF89E766F0299587/image-size/large?v=v2&amp;amp;px=999" role="button" title="backup-app-shared-space1.png" alt="backup-app-shared-space1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H5&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;&lt;STRONG&gt;Variables used in the template&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;&lt;STRONG&gt;:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;SourceSpaceID:&lt;/STRONG&gt;&amp;nbsp;The variable used to&amp;nbsp;define source space ID.&amp;nbsp;Please provide a shared space ID since copying an app from managed space is not permitted.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;TargetSpaceID:&lt;/STRONG&gt;&amp;nbsp;The variable&amp;nbsp;used to&amp;nbsp;define target space ID. Please provide a shared space ID since copying an app to managed space is not permitted.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;AppCount:&lt;/STRONG&gt;&amp;nbsp;The variable is used to get the count of apps exported to the target space successfully. Initially set this variable to 0.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H5 id="toc-hId--1601348018"&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;&lt;STRONG&gt;Automation structure:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H5&gt;
&lt;OL&gt;
&lt;LI&gt;Add the 'List Apps' block to get all the existing apps in the target shared space. Configure it to use the &lt;STRONG&gt;TargetSpaceID&lt;/STRONG&gt; variable as the Space ID.&lt;/LI&gt;
&lt;LI&gt;Add the 'Get Space' block to fetch the details of the source shared space. Configure it to use the &lt;STRONG&gt;SourceSpaceID&lt;/STRONG&gt; variable as the Space ID.&lt;/LI&gt;
&lt;LI&gt;Add the 'List Apps' block to get all the existing apps in the source shared space. Configure it to use the &lt;STRONG&gt;SourceSpaceID&lt;/STRONG&gt; variable as the Space ID.&lt;/LI&gt;
&lt;LI&gt;Add the 'Filter List' block to get the apps that already exist in the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if there are any apps from the source shared space that already exist in the target shared space.&amp;nbsp;
&lt;OL&gt;
&lt;LI&gt;If the condition block&amp;nbsp;outcome evaluates to true:
&lt;UL&gt;
&lt;LI&gt;Add the 'Delete App' block to remove the previous version of the source app from the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Copy App' block to copy the app from the source shared space to the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if the app from the source shared space was successfully exported to the target shared space.&lt;/LI&gt;
&lt;LI&gt;If yes,&amp;nbsp;Add 1 to the 'AppCount' variable during each iteration. This variable will provide the total number of apps that have been backed up to the target shared space.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;If the condition block&amp;nbsp;outcome evaluates to false:
&lt;UL&gt;
&lt;LI&gt;Add the 'Copy App' block to copy the app from the source shared space to the target shared space.&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if the app from the source shared space was successfully exported to the target shared space.&lt;/LI&gt;
&lt;LI&gt;If yes,&amp;nbsp;Add 1 to the 'AppCount' variable during each iteration. This variable will provide the total number of apps that have been backed up to the target shared space.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Add the 'Condition' block to check if there are any apps that were exported to the target shared space successfully.&lt;/LI&gt;
&lt;LI&gt;If yes, add an 'Update Run Title' block to specify the number of apps that have been exported to the target shared space successfully. The job title is visible when looking at the automation history and My Automation Runs Overview.&amp;nbsp;For more info:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_QlikAutomation/advanced/update-run-title.htm" target="_blank" rel="nofollow noopener noreferrer"&gt;Update run title block | Qlik Cloud Help&amp;nbsp;&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT style="--darkreader-inline-color: #6ecf9e;" color="#339966" data-darkreader-inline-color=""&gt;Related Content&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT style="--darkreader-inline-color: #72ff72;" color="#008000" data-darkreader-inline-color=""&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/CI-CD-pipelines-for-Qlik-Sense-apps-with-automations-and-Github/ta-p/1860837" target="_self"&gt;Export Qlik Sense Apps to GitHub&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="Qlik Cloud" id="qlikSenseEnterpriseSaaS"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Application Automation" id="qlikApplicationAutomation"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 09:08:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/ta-p/2058641</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-05-17T09:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Qlik Sense Apps from source to a target shared space using Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/tac-p/2534768#M16504</link>
      <description>&lt;P&gt;I have implemented this automation in our Qlik Cloud environment. The only changes, that I have made to the automation is to change the ID's of the source and the target space. After that I ran the automation and it worked just fine.&lt;/P&gt;&lt;P&gt;The problem, though, is that when I rerun the automation, I keep getting errors. Errors happen in the section where the automation tries to delele apps, that are already backed up. As an example I get the following error (and it is the same if I rerun the automation again, but the next time with an error for a different app-id).&lt;/P&gt;&lt;P&gt;Has anybody experienced the same and found a solution to this?&lt;/P&gt;&lt;P&gt;BR Kim&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Error.png" style="width: 678px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184568i8C0DCA39BDF81E57/image-size/large?v=v2&amp;amp;px=999" role="button" title="Error.png" alt="Error.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 07:38:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/tac-p/2534768#M16504</guid>
      <dc:creator>blipblopdk</dc:creator>
      <dc:date>2025-10-30T07:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Qlik Sense Apps from source to a target shared space using Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/tac-p/2534778#M16507</link>
      <description>&lt;P&gt;What I have found out when I look at the "History" for the block where the automation tries to delete the old version of already backed up apps is that it seems to try to delete the same app twice - and it fails at the second attempt, which makes sense if it has already been deleted the first time around.&lt;/P&gt;&lt;P&gt;But why does it try to delete the same app twice? I do not quite understand that. Anyone?&lt;/P&gt;&lt;P&gt;First attempt (successful):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="First attempt.png" style="width: 251px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184570i1D454FC85EC324E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="First attempt.png" alt="First attempt.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Second attempt (unsuccessful):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Second attempt.png" style="width: 147px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184571i9CE1543EC5EA148D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Second attempt.png" alt="Second attempt.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;BR Kim&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 08:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-export-Qlik-Sense-Apps-from-source-to-a-target-shared/tac-p/2534778#M16507</guid>
      <dc:creator>blipblopdk</dc:creator>
      <dc:date>2025-10-30T08:28:08Z</dc:date>
    </item>
  </channel>
</rss>

