<?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: Problem with mapping load and apply map in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30887#M771819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about it? What is the problem there?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 May 2018 11:29:33 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-05-30T11:29:33Z</dc:date>
    <item>
      <title>Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30884#M771816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to map two fields from two different tables which are already joined..I want to do it because if i dont map them properly they are showing me redundant data&amp;nbsp; even if the tables are joined.please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logic is all the fuel type like DMA / DMC can be classifyed as 2 groups HSDO and LSDO on basis of sulphur content.If Fuel type is RMA ... RMG it can be classified as HSFO OR LSFO if sulphur content is more than 0.01 and less than 0.01 rspectively.&lt;/P&gt;&lt;P&gt;.I want to map them because with conditional logic they are still showing redundant data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to implement this in my mapping table...Could this syntax be like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could this syntax be like:&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp; SURVEYID,&lt;/P&gt;&lt;P&gt;if(WildMatch([Fuel Type], 'DM*') and [Sulphur Content] = '&amp;gt;.01','HSDO',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(WildMatch([Fuel Type], 'DM*') and [Sulphur Content] = ' &amp;lt;:01','LSDO',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(WildMatch([Fuel Type], 'RM*') and [Sulphur Content] = '&amp;gt;.01','HSFO',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(WildMatch([Fuel Type], 'RM*') and [Sulphur Content] = ' &amp;lt;01' ,'ULSFO'))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; as&amp;nbsp;&amp;nbsp; NIFuelType&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM [mo_bun_sur_survey_view.qvd]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; SURVEY_ID,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('MAP1',NIFuelType, 'Unknown') as ActualFueltype&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[mo_purch_sounding_correction_view.qvd]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(qvd);&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/Problem-with-mapping-load-and-apply-map/m-p/30884#M771816</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30885#M771817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAP1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAPPING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD SURVEYID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch([Fuel Type], 'DM*'),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([Sulphur Content] &amp;gt; 0.01, 'HSDO', 'LSDO'),&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch([Fuel Type], 'RM*'),&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([Sulphur Content] &amp;gt; 0.01,'HSFO', 'ULSFO'))) as&amp;nbsp; NIFuelType&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;FROM [mo_bun_sur_survey_view.qvd] (qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 11:20:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30885#M771817</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-30T11:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30886#M771818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about the applymap section,&lt;/P&gt;&lt;P&gt;is this syntax right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; applymap('MAP1',&lt;STRONG&gt;NIFuelType&lt;/STRONG&gt;, 'Unknown') as ActualFueltype&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 11:23:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30886#M771818</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-05-30T11:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30887#M771819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about it? What is the problem there?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 11:29:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30887#M771819</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-30T11:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30888#M771820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i DONT KNOW IF ITS RIGHT OR NOT::I mean should i write &lt;STRONG&gt;NIFuelType or the field Fuel Type from the second table where I want to map the previous values&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 11:39:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30888#M771820</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-05-30T11:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30889#M771821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a field named NIFuelType in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[mo_purch_sounding_correction_view.qvd]? If you do, then you are all good.. if you don't then use the field from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[mo_purch_sounding_correction_view.qvd] which matches up with &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SURVEYID&lt;/STRONG&gt; to get &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;NIFuelType &lt;/STRONG&gt;from &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[mo_bun_sur_survey_view.qvd]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 11:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30889#M771821</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-30T11:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30890#M771822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;NIFuelType&lt;/STRONG&gt;&lt;/SPAN&gt; is a field i just created in &lt;STRONG&gt;[mo_bun_sur_survey_view.qvd&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;] &lt;BR /&gt;&lt;/STRONG&gt;for mapping..&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;mo_bun_sur_survey_view.qv AND &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;mo_bun_sur_oil_summary_view.qvd] HAVE ONLY ONE FIELD IN COMMON WHICH IS SURVEYID.&lt;/SPAN&gt;&lt;STRONG style=": ; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;So what could me my final code in this regard:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAP1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAPPING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD SURVEYID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch([Fuel Type], 'DM*'),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([Sulphur Content] &amp;gt; 0.01, 'HSDO', 'LSDO'),&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch([Fuel Type], 'RM*'),&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([Sulphur Content] &amp;gt; 0.01,'HSFO', 'ULSFO'))) as&amp;nbsp; NIFuelType&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;FROM [mo_bun_sur_survey_view.qvd] (qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM [mo_bun_sur_survey_view.qvd]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; SURVEY_ID,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; applymap('MAP1',&lt;STRONG&gt;SURVEYID&lt;/STRONG&gt;, 'Unknown') as ActualFueltype // &lt;STRONG&gt;NIFuelType OR &lt;STRONG&gt;SURVEYID&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[&lt;/STRONG&gt;mo_bun_sur_oil_summary_view.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 12:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30890#M771822</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-05-30T12:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30891#M771823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks right to be me with SURVEYID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="203909" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/203909_Capture.PNG" style="height: 294px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 12:28:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30891#M771823</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-30T12:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30892#M771824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But sorry, i just remember that the two tables are not linked with SURVEY_ID.Actually this table has &lt;STRONG&gt;[&lt;/STRONG&gt;mo_bun_sur_oil_summary_view.qvd] and [mo_purch_sounding_correction_view.qvd] are indirectly joined as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[mo_purch_sounding_correction_view.qvd] and &lt;STRONG&gt;[mo_bun_sur_survey_view.qvd]&amp;nbsp; are already joined with IntervalMatch function. and the third table (where i want to map ) is directly joined to first table &lt;STRONG&gt;[mo_bun_sur_survey_view.qvd] .&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;But the fuel type are not here and so I cant directly join with surveyid...&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;In an nutshell &lt;STRONG&gt;[&lt;/STRONG&gt;mo_bun_sur_oil_summary_view.qvd] which has field Fuel Type &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;and mo_purch_sounding_correction_view.qvd] which has field FUELTYPE and SULPHURCONTENT do not have a direct id...but indirectly added to the main table&lt;IMG alt="30.05.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/203910_30.05.png" style="height: 286px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 12:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30892#M771824</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-05-30T12:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30893#M771825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If they are already joined, then why are using mapping load?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 14:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30893#M771825</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-30T14:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30894#M771826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because I am having redundant data as the fuel type of the two tables are not mapped&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/204039_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2018 14:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30894#M771826</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-05-31T14:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30895#M771827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, I am not able to understand the problem. Are you able to share a qvw file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2018 15:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30895#M771827</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-31T15:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30896#M771828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 10:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30896#M771828</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-06-05T10:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30897#M771829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny, I have uploaded the qvw&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 10:04:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30897#M771829</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-06-05T10:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping load and apply map</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30898#M771830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, it is been few days before I last saw this, would you be able to briefly explain (too lazy to read the whole thing again) what are we trying to do and what from the qvw sample doesn't look right &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 11:15:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-mapping-load-and-apply-map/m-p/30898#M771830</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-06-05T11:15:05Z</dc:date>
    </item>
  </channel>
</rss>

