<?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: path issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/path-issue/m-p/1392840#M799071</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends upon how you made connections to your files and datasource. If you have used relative paths and folder structure is same in all the environments(i.e dev, test and prod) then no changes need to be done.&lt;/P&gt;&lt;P&gt;If your files have connection to sql or oracle database, then in that you have change the connection string from dev database to prod database&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Nov 2017 15:29:49 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-11-29T15:29:49Z</dc:date>
    <item>
      <title>path issue</title>
      <link>https://community.qlik.com/t5/QlikView/path-issue/m-p/1392839#M799068</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 have just completed my development on development server.Now i want to keep qvw and qvd files on daily reload in QMC on production server.so after copied all files to production server so wheather I need to change path for respective qvw qnd qvd files or not after copying it on production server ?&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/path-issue/m-p/1392839#M799068</guid>
      <dc:creator>dhavalvyas</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: path issue</title>
      <link>https://community.qlik.com/t5/QlikView/path-issue/m-p/1392840#M799071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends upon how you made connections to your files and datasource. If you have used relative paths and folder structure is same in all the environments(i.e dev, test and prod) then no changes need to be done.&lt;/P&gt;&lt;P&gt;If your files have connection to sql or oracle database, then in that you have change the connection string from dev database to prod database&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 15:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/path-issue/m-p/1392840#M799071</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-29T15:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: path issue</title>
      <link>https://community.qlik.com/t5/QlikView/path-issue/m-p/1392841#M799072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use a &lt;SPAN style="font-family: 'courier new', courier;"&gt;Settings.ini&lt;/SPAN&gt; (or whatever) file that you create yourself on each platform. Put the &lt;SPAN style="font-family: 'courier new', courier;"&gt;Settings.ini&lt;/SPAN&gt; file in a specific place that can be reached from your Load script using a relative reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your Settings.ini file, add various &lt;SPAN style="font-family: 'courier new', courier;"&gt;SET/LET&lt;/SPAN&gt; statements that define paths and locations of resources on this particular platform. For example (we're using demonstration paths to make the purpose clear to you):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SET vPath=D:\In Production\QlikView Framework\; // Set root for QlikView folders&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your Load script, start with importing the &lt;SPAN style="font-family: 'courier new', courier;"&gt;Settings.ini&lt;/SPAN&gt; file by using a &lt;SPAN style="font-family: 'courier new', courier;"&gt;Must_Include&lt;/SPAN&gt; construct. Then adjust each LOAD statement to include the &lt;SPAN style="font-family: 'courier new', courier;"&gt;vPath&lt;/SPAN&gt; variable in the path specification. That way, your documents become platform-independent because they import the paths and configuration settings that apply to the current environment. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;// Import vPath and everything else that applies to this platform&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;// We assume the QVW to reside in ..\Documents\&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;$(Must_Include=..\General\Settings.ini)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FROM [$(vPath)\QVD\TableData.QVD] (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember to never copy the &lt;SPAN style="font-family: 'courier new', courier;"&gt;Settings.ini&lt;/SPAN&gt; file together with your new documents from one platform to the next.&lt;/P&gt;&lt;P&gt;Of course, your mileage will most certainly vary. Adapt as needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 16:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/path-issue/m-p/1392841#M799072</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-11-29T16:26:48Z</dc:date>
    </item>
  </channel>
</rss>

