<?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: Not getting correct output from mapping table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334493#M822152</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes in base table it is there and I have also mention in the mapping table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;map1:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mapping&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt; GMTID,Location&lt;BR /&gt; 1:00,London&lt;BR /&gt; 2:00,Europe&lt;BR /&gt; 5:30,India&lt;BR /&gt; 8:00,Hong Kong&lt;BR /&gt; -4:00,Canada&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&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;applymap&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('map1',&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Location not Found') &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;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; qvd; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2017 07:14:53 GMT</pubDate>
    <dc:creator>ashis</dc:creator>
    <dc:date>2017-08-03T07:14:53Z</dc:date>
    <item>
      <title>Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334484#M822143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;In my source table i have two date fields name ReportUserTime and ReportTime, and its format as as follow&lt;BR /&gt;7/11/2017&amp;nbsp; 11:31:01 AM&lt;/P&gt;&lt;P&gt;now based on these two columns i am calculating GMT (Difference between two time) using&lt;/P&gt;&lt;P&gt;interval(time(StartTimeReportUserTimeZone, 'hh:mm') - time(StartTimeReport, 'hh:mm'), 'h:mm') as GMTID&lt;/P&gt;&lt;P&gt;and saving in one qvd. The output of the GMTID are 1:00,2:00,5:30 etc&lt;/P&gt;&lt;P&gt;Now based on these GMTID i need to show location , for that i am creating a mapping table as below.&lt;/P&gt;&lt;P&gt;map1:&lt;BR /&gt;Mapping load&lt;BR /&gt;GMTID,Location&lt;BR /&gt;INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GMTID,Location&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:00,London&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2:00,Europe&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5:30,India&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8:00,Hong Kong&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;applymap('map1',GMTID,'Location not Found') as Location&lt;BR /&gt;Resident fromqvd;&lt;/P&gt;&lt;P&gt;somehow this is not working i am getting Location output as Location not found for all the rows.&lt;/P&gt;&lt;P&gt;Please help.&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/Not-getting-correct-output-from-mapping-table/m-p/1334484#M822143</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334485#M822144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works Perfect for me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;map1:&lt;/P&gt;&lt;P&gt;Mapping load&lt;/P&gt;&lt;P&gt;GMTID,Location&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GMTID,Location&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:00,London&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2:00,Europe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5:30,India&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8:00,Hong Kong&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Master:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GMTID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5:30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8:00&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;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;applymap('map1',GMTID,'Location not Found') as Location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Master;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Master;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the data in your QVD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 09:46:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334485#M822144</guid>
      <dc:creator>techvarun</dc:creator>
      <dc:date>2017-08-02T09:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334486#M822145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont see any issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is GMTID getting the value?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and are you taking correct resident table name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes try to rename location and try&amp;nbsp; ,&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;map1:&lt;BR /&gt;Mapping load&lt;BR /&gt;GMTID,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;Location&amp;nbsp;&amp;nbsp; as &lt;/SPAN&gt;&lt;STRONG style="text-decoration: underline;"&gt;New_Location&lt;/STRONG&gt;&lt;BR /&gt;INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GMTID,Location&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:00,London&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2:00,Europe&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5:30,India&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8:00,Hong Kong&lt;BR /&gt;];&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;applymap('map1',GMTID,'Location not Found') as Location&lt;BR /&gt;Resident fromqvd;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; just for ref small example below&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//Mapping Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;CustomerTable:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Mapping&lt;/SPAN&gt; &lt;STRONG style="font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Load&lt;/STRONG&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;*&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Inline&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: maroon;"&gt;[&lt;BR /&gt;CustomerID, Country&lt;BR /&gt;A, Germany&lt;BR /&gt;B, France&lt;BR /&gt;C, Italy&lt;BR /&gt;D, Poland&lt;BR /&gt;E, Spain&lt;BR /&gt;Z, UK&lt;BR /&gt;]&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sales:&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Load&lt;/STRONG&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;*,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;ApplyMap&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;('CustomerTable',&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: maroon;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;, 'Unknown')&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: maroon;"&gt;CustomerCountry&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Inline&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: maroon;"&gt;[&lt;BR /&gt;CustomerID, Month, Sales&lt;BR /&gt;A, Jan, 100&lt;BR /&gt;B, Jan, 200&lt;BR /&gt;C, Jan, 300&lt;BR /&gt;D, Feb, 150&lt;BR /&gt;E, Mar, 200&lt;BR /&gt;F, Apr, 100&lt;BR /&gt;A, May, 140&lt;BR /&gt;D, May, 80&lt;BR /&gt;E, May, 100&lt;BR /&gt;F, Jun, 150&lt;BR /&gt;]&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 09:46:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334486#M822145</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-08-02T09:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334487#M822146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am getting GMTID there is not issue. as I said I am getting GMT id as , 1:00, 5:30, 2:00 eg.&lt;/P&gt;&lt;P&gt;I am suspecting that the following code that calculating the GMT is the culprit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;interval&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;StartTimeReportUserTimeZone&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'hh:mm') - &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;StartTimeReport&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'hh:mm'), 'h:mm'),'h:mm') &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;GMTID &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;apart from that i do not see any issue in my code. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;may be the above code is coming as text.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 10:05:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334487#M822146</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2017-08-02T10:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334488#M822147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to resolve the issue by putting the following syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time#&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;interval&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;StartTimeReportUserTimeZone&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'hh:mm') - &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;StartTimeReport&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'hh:mm'), 'h:mm'),'h:mm') &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;GMTID &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 10:13:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334488#M822147</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2017-08-02T10:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334489#M822148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try simple expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL class="dp-c" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; list-style-position: initial; list-style-image: initial; color: #5c5c5c; margin: 0 0 1px 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;LOAD *,&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(JOB_ONSITETIME-JOB_CREATETIME, 'h.mm') as JOB_RESPTIME&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;INLINE [&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JOB_CREATETIME, JOB_ONSITETIME&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/29/2016 00:12:16, 12/29/2016 00:12:20&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; background-color: inherit; font-size: 9pt !important;"&gt;];&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 10:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334489#M822148</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-08-02T10:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334490#M822149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not it is not working for Canada, any idea why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;map1:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mapping&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt; GMTID,Location&lt;BR /&gt; 1:00,London&lt;BR /&gt; 2:00,Europe&lt;BR /&gt; 5:30,India&lt;BR /&gt; 8:00,Hong Kong&lt;BR /&gt; -4:00,Canada&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 10:20:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334490#M822149</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2017-08-02T10:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334491#M822150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me , why -4:00 , Canada is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;map1:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mapping&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt; GMTID,Location&lt;BR /&gt; 1:00,London&lt;BR /&gt; 2:00,Europe&lt;BR /&gt; 5:30,India&lt;BR /&gt; 8:00,Hong Kong&lt;BR /&gt; -4:00,Canada&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&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;applymap&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('map1',&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Location not Found') &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;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; QVD; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;For Canada , I am getting Location not Found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Please help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 06:45:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334491#M822150</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2017-08-03T06:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334492#M822151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly check -4:00 avalibale in both the places. In Mapping Master and Base data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arvind Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 06:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334492#M822151</guid>
      <dc:creator>arvind_patil</dc:creator>
      <dc:date>2017-08-03T06:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334493#M822152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes in base table it is there and I have also mention in the mapping table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;map1:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mapping&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt; GMTID,Location&lt;BR /&gt; 1:00,London&lt;BR /&gt; 2:00,Europe&lt;BR /&gt; 5:30,India&lt;BR /&gt; 8:00,Hong Kong&lt;BR /&gt; -4:00,Canada&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&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;applymap&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('map1',&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GMTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Location not Found') &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;Location&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; qvd; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 07:14:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334493#M822152</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2017-08-03T07:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334494#M822154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now time to provide sample qvw.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/shocked.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arvind Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 07:39:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334494#M822154</guid>
      <dc:creator>arvind_patil</dc:creator>
      <dc:date>2017-08-03T07:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334495#M822155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any other way if I have negative value in my mapping load table.&lt;/P&gt;&lt;P&gt;because for all other values it is working fine , only problem is getting when has negative value in ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 07:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334495#M822155</guid>
      <dc:creator>ashis</dc:creator>
      <dc:date>2017-08-03T07:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting correct output from mapping table</title>
      <link>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334496#M822156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to using join may be it help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Arvind Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 08:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Not-getting-correct-output-from-mapping-table/m-p/1334496#M822156</guid>
      <dc:creator>arvind_patil</dc:creator>
      <dc:date>2017-08-03T08:02:12Z</dc:date>
    </item>
  </channel>
</rss>

