<?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: Scripting with qvd:s in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615746#M685111</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hakan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you post a sample of your application?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antoine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Feb 2014 10:24:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-10T10:24:17Z</dc:date>
    <item>
      <title>Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615743#M685108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;Invoices:

load * from I:\Statistics\QVA\Datafiles\2012\StatKomp2012_gen.qvd (qvd);
load * from I:\Statisticsk\QVA\Datafiles\2013\StatKomp2013_gen.qvd (qvd);
join load cunumber,Salesman1 as CR_Sales1,Salesman2 as CR_Sales2&amp;nbsp; resident Customer_read;

This gives me both salesmen in every record but I will have only the one that correspod
to the inoice type&amp;nbsp; in inv_type 


In my earlier script where I was joining the salesman in an temptable 

Invoice_Temp:
Load [@1:8T] as inv_period1,
.
.
from I:\Statistics\QVA\Datafiles\2012\stat12_gen.txt (ansi, fix, no labels, header is 0, record is line)
 where [@216:223T]&amp;lt;&amp;gt;'GE';
 join load cunumber,Salesman1,Salesman2 resident Customer_read;
 
 
 and in the next read I had an if-sentence
 
 Invoices:
Load inv_period1 as inv_period,
inv_type1 as inv_type,
.
.
if(inv_type1='L',Salesman1,Salesman2) as inv_salesman
resident Fakturor_Temp
&amp;nbsp; where left(StatHierarki1,2)&amp;lt;&amp;gt;'17' ;
&amp;nbsp; 
&amp;nbsp; 
&amp;nbsp; This inv_salesman was then used in an Load * Inline
&amp;nbsp; 
&amp;nbsp; Salesman:
&amp;nbsp; Load * Inline [
&amp;nbsp; inv_salesman, salesman
&amp;nbsp; SE999900, No allocation
&amp;nbsp; SE999901, RegionA_G
&amp;nbsp; SE999902, RegionB_G
&amp;nbsp; SE999903, RegionB_F
&amp;nbsp; SE999904, RegionC_G
&amp;nbsp; SE999905, No allocation
&amp;nbsp; SE999906, RegionC_F
&amp;nbsp; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ', No allocation
];

When I load the qvd-files I have no connection to the field inv_type as I have when I load
from the txt-file. 
Is there any other way to put the right salesman to the record in the table Invoices?

kindly
Håkan
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 11:33:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615743#M685108</guid>
      <dc:creator />
      <dc:date>2014-02-06T11:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615744#M685109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hakan,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_salesman1:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cunumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Salesman1&lt;/P&gt;&lt;P&gt;Resident Customer_read;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_salesman2:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cunumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Salesman2&lt;/P&gt;&lt;P&gt;Resident Customer_read;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Invoices:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(inv_type1='L', ApplyMap ('Map_salesman1', cunumber, 'No salesman 1'),&amp;nbsp; ApplyMap ('Map_salesman2', cunumber, 'No salesman 2'))&amp;nbsp; as Invoice_SalesMan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM I:\Statistics\QVA\Datafiles\2012\StatKomp2012_gen.qvd (qvd);&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(inv_type1='L', ApplyMap ('Map_salesman1', cunumber, 'No salesman 1'),&amp;nbsp; ApplyMap ('Map_salesman2', cunumber, 'No salesman 2'))&amp;nbsp; as Invoice_SalesMan,&lt;/P&gt;&lt;P&gt;FROM I:\Statisticsk\QVA\Datafiles\2013\StatKomp2013_gen.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*Edit: didn't see the invoice type = 'L' condition. that should work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 14:22:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615744#M685109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-08T14:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615745#M685110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;thanks for the response but I dont get the salesman number into the field 'Invoice_Salesman'&amp;nbsp; though the ''No salesman 1' not is the value of Salesman1 in the mapping. If I use it as it is now I only get the text&amp;nbsp; 'Salesman1' or&lt;/P&gt;&lt;P&gt;'Salesman2' . How do I get the values from Salesman1 and Salesman2 into Invoice_SalesMan?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly&lt;/P&gt;&lt;P&gt;Håkan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 09:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615745#M685110</guid>
      <dc:creator />
      <dc:date>2014-02-10T09:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615746#M685111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hakan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you post a sample of your application?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antoine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 10:24:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615746#M685111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T10:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615747#M685112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Antoine,&lt;/P&gt;&lt;P&gt;here comes my app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly&lt;/P&gt;&lt;P&gt;Håkan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 13:51:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615747#M685112</guid>
      <dc:creator />
      <dc:date>2014-02-10T13:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615748#M685113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that if you ever want to publish this document on a QlikView server, you should replace the QVD paths with corresponding UNC paths. Drive I: almost certainly won't exist for the service account on a QlikView Server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even better, store the path(s) in variables at the front of your script and use the variables throughout your tabs. Makes maintenance a lot easier when locations change.&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>Mon, 10 Feb 2014 14:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615748#M685113</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2014-02-10T14:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615749#M685114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hakan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The mapping seems to work well. I suspect a data issue in the source files.&lt;/P&gt;&lt;P&gt;Try going back to the TXT file and isolate the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i do the following:&lt;/P&gt;&lt;P&gt;Map_salesman1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;kundnr1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;SäljareGlas&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Salesman1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; customer.qvd(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Map_salesman2:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;kundnr1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;SäljareBågar&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Salesman2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; customer.qvd(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the same results as when I apply the map.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;This is what I get in the invoice salesman field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="148"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="148"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999900&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999901&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999902&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999903&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999904&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999905&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17"&gt;SE999906&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 15:35:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615749#M685114</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T15:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615750#M685117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now it works fine. Thanks for all support all of you.&lt;/P&gt;&lt;P&gt;The problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly&lt;/P&gt;&lt;P&gt;Håkan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 13:40:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615750#M685117</guid>
      <dc:creator />
      <dc:date>2014-02-12T13:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615751#M685119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;This is good.&lt;/P&gt;&lt;P&gt;For curiosity, what was the root cause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 15:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615751#M685119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-12T15:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting with qvd:s</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615752#M685120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a mix of reading this years file as a text file and there add the salesmen by Apply Map and reading qvd-files with the Apply Map.&lt;/P&gt;&lt;P&gt;In this case it didn´t work. Now I created a ‘dirty solution’, first reading the text file from this year into an qvd-file and then load it&lt;/P&gt;&lt;P&gt;as the other qvd-files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an general problem with these text files with a version higher than 11.00 so I have to create the qvd:s and all calculations in this&lt;/P&gt;&lt;P&gt;version and then do the layout in higher versions. I don´t exactly now what is causing this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly&lt;/P&gt;&lt;P&gt;Håkan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Håkan Fogelin&lt;/P&gt;&lt;P&gt;RSE/IT&lt;/P&gt;&lt;P&gt;IT-manager&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tel: +46 (0)18188005&lt;/P&gt;&lt;P&gt;E-Mail: hakan.fogelin@rodenstock.se&lt;/P&gt;&lt;P&gt;Rodenstock Sverige AB&lt;/P&gt;&lt;P&gt;Fålhagsleden 61&lt;/P&gt;&lt;P&gt;753 23 Uppsala&lt;/P&gt;&lt;P&gt;www.rodenstock.se&amp;lt;http://www.rodenstock.se/&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Facebook&amp;lt;http://www.facebook.com/Rodenstock&amp;gt; | Twitter&amp;lt;http://twitter.com/Rodenstock&amp;gt; | YouTube&amp;lt;http://www.youtube.com/SeeBetterRodenstock&amp;gt; | Blog&amp;lt;http://www.rodenstock-blog.com/&amp;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;&lt;/P&gt;&lt;P&gt;Från: eruditio &lt;/P&gt;&lt;P&gt;Skickat: den 12 februari 2014 16:04&lt;/P&gt;&lt;P&gt;Till: Fogelin, Håkan&lt;/P&gt;&lt;P&gt;Ämne: Re:  - Scripting with qvd:s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlik Community&amp;lt;http://community.qlik.com/&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scripting with qvd:s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from eruditio&amp;lt;http://community.qlik.com/people/eruditio?et=watches.email.thread&amp;gt; in Scripting - View the full discussion&amp;lt;http://community.qlik.com/message/467135?et=watches.email.thread#467135&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 07:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-with-qvd-s/m-p/615752#M685120</guid>
      <dc:creator />
      <dc:date>2014-02-13T07:18:09Z</dc:date>
    </item>
  </channel>
</rss>

