<?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: Reverse trace data source in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7814#M1208</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While my data does come in from multiple sources, the building information should only come in from a very limited few. That's where my confusion is coming in, because I THOUGHT I had that data under control, and I can't figure out what I am missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="text-decoration: line-through;"&gt; I will try the #NV solution, as that should be a pretty good indicator of sourcing. I'll come back and mark correct if this gets me where I need to be.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll also add your mapping stabilization. I don't think it is the issue, but it sounds like pretty solid advice regardless. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: While I still have to figure out the reason for my issue, the #NV solution solved this question. I have three different ways building information can be imported, and I used "#NV1", "#NV2", and "#NV3" to separate these. I can now look at which sources are providing which errors, and hopefully, will be able to identify the mismatch by comparing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ultimately, I will remove the numbering and keep "#NV" in there to identify any new data in the future. Thanks for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jan 2018 14:33:13 GMT</pubDate>
    <dc:creator>jason_nicholas</dc:creator>
    <dc:date>2018-01-26T14:33:13Z</dc:date>
    <item>
      <title>Reverse trace data source</title>
      <link>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7812#M1206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I am wondering if there is a way to identify the source of a particular item in a field? I would like to make a selection on my application, and see the transformational path that data point has taken since it was loaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; My application has a list of ~200 buildings, and I have these grouped into regions through a mapping load. I load the entire list of buildings that are in our environment, and map each one to either NA, EMEA, or APAC. Then, I load the source data in with ApplyMap to add a Region field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RegionMap:&lt;/P&gt;&lt;P&gt;MAPPING LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Building, Region&lt;/P&gt;&lt;P&gt;BldgA, NA&lt;/P&gt;&lt;P&gt;BldgB, EMEA&lt;/P&gt;&lt;P&gt;BldgC, APAC...&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ApplyMap ('RegionMap', [Building], null()) as Region,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I then have a function in my application used to test this. I have the Building field and the Region field next to each other. When I select all three regions, there should be no excluded buildings. When I find excluded buildings, it means there is data that wasn't present before, and I can add the new buildings to the RegionMap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; However, occasionally, a building appears as excluded even if it is listed in RegionMap. I'm assuming this means the data is coming in in a way that bypasses the ApplyMap in my fact table load, but I can't figure out how. Is there a way to view the load and transformation path of a data point so that I can look at the excluded building and determine where it came from, and why it doesn't associate with the listed region?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2018 13:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7812#M1206</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2018-01-26T13:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse trace data source</title>
      <link>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7813#M1207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure that I have understood your problem right but I assume that your fact-table is created from multiple sources. These sources could be loaded as an own field, for example with something:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'db.XYZ.table.ABC' as Source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or by file-sources:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filebasename() as Source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further if you put a real value like '#NV' instead of null() as the third default-value in your applymap() you could directly select them and see which other data are related to this record which will probably also give a good idea where the cause could be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you could try to make your mapping more stable with something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ApplyMap ('RegionMap', upper(trim([Building])), '#NV') // the mapping table would need the upper too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which would exclude some of the possible non-matchings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2018 14:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7813#M1207</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-26T14:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse trace data source</title>
      <link>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7814#M1208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While my data does come in from multiple sources, the building information should only come in from a very limited few. That's where my confusion is coming in, because I THOUGHT I had that data under control, and I can't figure out what I am missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="text-decoration: line-through;"&gt; I will try the #NV solution, as that should be a pretty good indicator of sourcing. I'll come back and mark correct if this gets me where I need to be.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll also add your mapping stabilization. I don't think it is the issue, but it sounds like pretty solid advice regardless. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: While I still have to figure out the reason for my issue, the #NV solution solved this question. I have three different ways building information can be imported, and I used "#NV1", "#NV2", and "#NV3" to separate these. I can now look at which sources are providing which errors, and hopefully, will be able to identify the mismatch by comparing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ultimately, I will remove the numbering and keep "#NV" in there to identify any new data in the future. Thanks for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2018 14:33:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7814#M1208</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2018-01-26T14:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse trace data source</title>
      <link>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7815#M1209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And just to close out the story, the issue I was encountering was due to errant spaces within my building title. I can source the problem to an Excel function I did to create my source list for the Mapping Load (text to columns, comma delimited). In the process, I added the spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find and replace {comma} {space} {space} with {comma} {space} in my Mapping Load, and the problem disappeared.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2018 14:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reverse-trace-data-source/m-p/7815#M1209</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2018-01-26T14:53:45Z</dc:date>
    </item>
  </channel>
</rss>

