<?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: Migrating code to production or test environment in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284038#M854122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When you are migrating code from one server to another, are you aware of any method which will keep App IDs same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2018 13:00:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-10-18T13:00:30Z</dc:date>
    <item>
      <title>Migrating code to production or test environment</title>
      <link>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284035#M854119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At present we are working on Qlik Sever for developing dashboard.Now i want to know the process to migrate our code(dashboard) from development to production or test enviroment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284035#M854119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating code to production or test environment</title>
      <link>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284036#M854120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simple approach? Copy'n'Paste your document to the other platform and republish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on the complexity of your documents, the dependencies and number of data stages involved in lthe preparation of data for the document to be propagated to another platform, you may need to define your own process steps and checks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the other end of the solution spectrum, you can use a VCS (Version Control system) to propagate entire application set-ups to another branch/platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful documents:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-6697"&gt;QlikView Deployment Framework - Basic Introduction.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5305"&gt;Qlik Deployment Framework Deployment Guide&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 13:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284036#M854120</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-02-16T13:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating code to production or test environment</title>
      <link>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284037#M854121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My current place of work has three levels of "working" and two key business areas.&lt;/P&gt;&lt;P&gt;I mirrored this folder structure on the Qlik server, then added some simple script logic to ensure that when I copy and paste the files, they continue to pick up from the correct source folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This isn't really a solution, just a friendly hint&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example the following code is held in an include script which goes into every dashboard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14872517522467142 jive_text_macro" jivemacro_uid="_14872517522467142"&gt;
&lt;P&gt;&lt;EM&gt;//this is where we set the document path to make sure that we can automatically pull the correct connection string, binary files, etc from DEMO/UAT/LIVE&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;//Find the location of this file&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_fileloc=documentpath();&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;//figure out which folder it is in&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_filestate =&amp;nbsp; if(WildMatch('$(v_fileloc)','*DEMO*')&amp;gt;=1,'DEMO',if(WildMatch('$(v_fileloc)','*LIVE*')&amp;gt;=1,'LIVE',if(WildMatch('$(v_fileloc)','*UAT*')&amp;gt;=1,'UAT','UNKNOWN')));&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_fileteam = if(WildMatch('$(v_fileloc)','*Housing*')&amp;gt;=1,'Housing',if(WildMatch('$(v_fileloc)','*Community Care*')&amp;gt;=1,'Community Care','UNKNOWN'));&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;//setup the folders we will need to load from&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_filesource_include = 'D:\QlikView\Source Docs\'&amp;amp;v_filestate&amp;amp;'\'&amp;amp;v_fileteam&amp;amp;'\include_scripts\';&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_filesource_qvd ='D:\QlikView\Source Docs\'&amp;amp;v_filestate&amp;amp;'\'&amp;amp;v_fileteam&amp;amp;'\qvd_files\';&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_filesource_images ='D:\QlikView\Source Docs\'&amp;amp;v_filestate&amp;amp;'\'&amp;amp;v_fileteam&amp;amp;'\images\';&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_filesource_manual_files ='D:\QlikView\Source Docs\'&amp;amp;v_filestate&amp;amp;'\'&amp;amp;v_fileteam&amp;amp;'\manual_files\';&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_filesource_binary ='D:\QlikView\Published Apps\'&amp;amp;v_filestate&amp;amp;'\'&amp;amp;v_fileteam&amp;amp;'\_binary_dashboards\';&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;//drop the variable we don't need&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;let v_fileloc = null();&lt;/EM&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see, the system then knows where to pull all the files from automatically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 13:29:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284037#M854121</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-02-16T13:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating code to production or test environment</title>
      <link>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284038#M854122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When you are migrating code from one server to another, are you aware of any method which will keep App IDs same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 13:00:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Migrating-code-to-production-or-test-environment/m-p/1284038#M854122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-18T13:00:30Z</dc:date>
    </item>
  </channel>
</rss>

