<?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 Special characters in mapping load name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175238#M43764</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vegar,&lt;/P&gt;&lt;P&gt;mapping tables will be dropped automatically at the end of script execution. So names here doesn't really matter. For naming persistent tables look at my snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;[SK02-21]:&lt;BR /&gt; LOAD * INLINE [&lt;BR /&gt; Kode,Kundsegment&lt;BR /&gt; SK1, Superkunde Private&lt;BR /&gt; SK2, Superkunde Public&lt;BR /&gt; ];&lt;BR /&gt;&lt;BR /&gt;'whatever SK02-21':&lt;BR /&gt;Load&lt;BR /&gt; Kundsegment as MySeg&lt;BR /&gt;Resident [SK02-21];&lt;BR /&gt;&lt;BR /&gt;'next SK02-21':&lt;BR /&gt;Load&lt;BR /&gt; MySeg as OurSeg&lt;BR /&gt;Resident [whatever SK02-21];&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Nov 2010 10:31:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-11-08T10:31:30Z</dc:date>
    <item>
      <title>Special characters in mapping load name</title>
      <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175237#M43763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to name my Mapping load table as follows:&lt;/P&gt;&lt;P&gt;&lt;CODE style="background-color: yellow;"&gt;[map SK02-21]&lt;/CODE&gt;&lt;CODE&gt;:&lt;BR /&gt; MAPPING LOAD * INLINE [&lt;BR /&gt; Kode,Kundsegment&lt;BR /&gt; SK1, Superkunde Private&lt;BR /&gt; SK2, Superkunde Public&lt;BR /&gt; ];&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;I want to use the minus (-) sign because my customer will recognise this name-structure from her other systems.&lt;/P&gt;&lt;P&gt;I use&lt;/P&gt;&lt;P&gt;&lt;CODE style="{background-color:Yellow}"&gt;applymap('[map SK02-21]', Kode1)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;but the &lt;B&gt;applymap returns nothing&lt;/B&gt;.&lt;/P&gt;&lt;P&gt;It seems to me that QV have trouble recognizing my mapping table name as a string, but it has no problem recognizing it if I choose to save it as a regular table. Am I missing the correct syntax? Or should I consider this as a bug? I've tried is in both QV9 and QV10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An ugly &lt;B&gt;workaround&lt;/B&gt; (my purpose for using the namestandard is lost) is to put [map SK02-1] &lt;B&gt;into an variable&lt;/B&gt; [varSK] and use&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;[$([varSK])]:&lt;BR /&gt; MAPPING LOAD * INLINE [&lt;BR /&gt; Kode,Kundsegment&lt;BR /&gt; SK1, Superkunde Private&lt;BR /&gt; SK2, Superkunde Public&lt;BR /&gt; ];&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;And call the applymap using the variable like this.&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;applymap('[$([varSK])]', Kode1)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 10:09:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175237#M43763</guid>
      <dc:creator />
      <dc:date>2010-11-08T10:09:34Z</dc:date>
    </item>
    <item>
      <title>Special characters in mapping load name</title>
      <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175238#M43764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vegar,&lt;/P&gt;&lt;P&gt;mapping tables will be dropped automatically at the end of script execution. So names here doesn't really matter. For naming persistent tables look at my snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;[SK02-21]:&lt;BR /&gt; LOAD * INLINE [&lt;BR /&gt; Kode,Kundsegment&lt;BR /&gt; SK1, Superkunde Private&lt;BR /&gt; SK2, Superkunde Public&lt;BR /&gt; ];&lt;BR /&gt;&lt;BR /&gt;'whatever SK02-21':&lt;BR /&gt;Load&lt;BR /&gt; Kundsegment as MySeg&lt;BR /&gt;Resident [SK02-21];&lt;BR /&gt;&lt;BR /&gt;'next SK02-21':&lt;BR /&gt;Load&lt;BR /&gt; MySeg as OurSeg&lt;BR /&gt;Resident [whatever SK02-21];&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 10:31:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175238#M43764</guid>
      <dc:creator />
      <dc:date>2010-11-08T10:31:30Z</dc:date>
    </item>
    <item>
      <title>Special characters in mapping load name</title>
      <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175239#M43765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It works in QV9 SR6, 64 bits. And QV10 32 bits&lt;/P&gt;&lt;P&gt;-Alex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;[map SK123-456]:&lt;BR /&gt;MAPPING LOAD * INLINE [&lt;BR /&gt; Kode, ID&lt;BR /&gt; one, 1&lt;BR /&gt; two, 2&lt;BR /&gt; three, 3&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;T1:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Kode, Segment&lt;BR /&gt; one, a&lt;BR /&gt; two, b&lt;BR /&gt; three, c&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;T2:&lt;BR /&gt;LOAD&lt;BR /&gt; Kode as OrigKode,&lt;BR /&gt; applymap('map SK123-456', Kode) as ID,&lt;BR /&gt; Segment&lt;BR /&gt;resident T1;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 10:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175239#M43765</guid>
      <dc:creator />
      <dc:date>2010-11-08T10:32:39Z</dc:date>
    </item>
    <item>
      <title>SV:Re: Special characters in mapping load name</title>
      <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175240#M43766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alex,&lt;/P&gt;&lt;P&gt;By looking at your code I see my mistake. I have used the ' ' and [ ] wrong.&lt;/P&gt;&lt;P&gt;I called the map with&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;applymap('[map SK02-21]', Kode1)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;but the correct syntax should be&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;applymap('map SK02-21', Kode1)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your feedback.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 11:05:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175240#M43766</guid>
      <dc:creator />
      <dc:date>2010-11-08T11:05:11Z</dc:date>
    </item>
    <item>
      <title>SV:Re: Special characters in mapping load name</title>
      <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175241#M43767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roland,&lt;/P&gt;&lt;P&gt;I'm aware of the automatic drop of mapping tables, but the customer is to handle the development and manage the scripts in the future. That's why naming is important in this case. I could off course used underscore (_) or similar, but it was frustrating not manage to put minus (-) in my script.&lt;/P&gt;&lt;P&gt;I notice you start your snipplet with defining the table name with &lt;CODE&gt;[tablename]&lt;/CODE&gt; , but continue using the &lt;CODE&gt;'tablename'&lt;/CODE&gt; , does it matter which one you choose? Is any of the two to prefer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 11:17:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175241#M43767</guid>
      <dc:creator />
      <dc:date>2010-11-08T11:17:09Z</dc:date>
    </item>
    <item>
      <title>SV:Re: Special characters in mapping load name</title>
      <link>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175242#M43768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vegar,&lt;/P&gt;&lt;P&gt;no, as far as I know they are equal. May be in a dark und dusty corner of QV they differ.&lt;/P&gt;&lt;P&gt;The usage is more a matter of taste, of course in a normal script I am using only one of them continously.&lt;/P&gt;&lt;P&gt;Enjoy QV, Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 11:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Special-characters-in-mapping-load-name/m-p/175242#M43768</guid>
      <dc:creator />
      <dc:date>2010-11-08T11:35:33Z</dc:date>
    </item>
  </channel>
</rss>

