<?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 Having trouble displaying information in Text Objects when using Direct Query in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263639#M438098</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two QVW files, each with virtually the same information:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;One pulls information from a SQL Database via a standard SELECT&lt;/LI&gt;&lt;LI&gt;The other pulls the same information from the same source, but via a DIRECT QUERY.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a drill-down group (Department --&amp;gt; Machine) in both qvw files.&lt;/P&gt;&lt;P&gt;When I select specific information to view, the table box reflects the information accurately for both qvw files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is, on the qvw with the standard SELECT, I get the exact information I need in the text objects based on specific conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, on the DIRECT QUERY qvw, some values display as expected, but others display as if the underlying field were null, when the Table Box &lt;STRONG&gt;clearly&lt;/STRONG&gt; depicts the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my question is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to I duplicate the information that is accurately showing in the standard SELECT qvw, into the DIRECT QUERY qvw.&amp;nbsp; Scripts for each are below:&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;SQL&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT machineID,&lt;BR /&gt; machineDesc,&lt;BR /&gt; deptID,&lt;BR /&gt; deptNum,&lt;BR /&gt; deptDesc,&lt;BR /&gt; colNum,&lt;BR /&gt; colDesc,&lt;BR /&gt; runTime,&lt;BR /&gt; setupTime,&lt;BR /&gt; downTime,&lt;BR /&gt; noProdTime,&lt;BR /&gt; totalTime,&lt;BR /&gt; curSpeed,&lt;BR /&gt; curLNFT,&lt;BR /&gt; qtyPerHour,&lt;BR /&gt; qtyProduced,&lt;BR /&gt; qtyWasted,&lt;BR /&gt; qtyProcessed,&lt;BR /&gt; MTBF,&lt;BR /&gt; downCount,&lt;BR /&gt; shiftDesc,&lt;BR /&gt; reportDT,&lt;BR /&gt; processID,&lt;BR /&gt; jobID,&lt;BR /&gt; billToCustNum,&lt;BR /&gt; billToCustomer,&lt;BR /&gt; shipToCustNum,&lt;BR /&gt; shipToCustomer,&lt;BR /&gt; itemID,&lt;BR /&gt; itemDesc,&lt;BR /&gt; machineStateID,&lt;BR /&gt; qtyLNFT,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctAvailability_U"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctAvailability_R"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; pctMaxSpeed,&lt;BR /&gt; pctPerformance,&lt;BR /&gt; pctQuality,&lt;BR /&gt; pctWaste,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"calcPctOEE_U"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"calcPctOEE_R"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctOEE_U"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctOEE_R"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; FROM [Data Source Removed]; &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;DIRECT&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;QUERY&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;DIMENSION&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; machineID&lt;BR /&gt; ,machineDesc&lt;BR /&gt; ,deptID&lt;BR /&gt; ,deptDesc&lt;BR /&gt; ,colNum&lt;BR /&gt; ,colDesc&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MEASURE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; runTime&lt;BR /&gt; ,setupTime&lt;BR /&gt; ,downTime&lt;BR /&gt; ,noProdTime&lt;BR /&gt; ,totalTime&lt;BR /&gt; ,curSpeed&lt;BR /&gt; ,curLNFT&lt;BR /&gt; ,qtyPerHour&lt;BR /&gt; ,qtyProduced&lt;BR /&gt; ,qtyLNFT&lt;BR /&gt; ,qtyWasted&lt;BR /&gt; ,qtyProcessed&lt;BR /&gt; ,MTBF&lt;BR /&gt; ,downCount&lt;BR /&gt; ,shiftDesc&lt;BR /&gt; ,reportDT&lt;BR /&gt; ,jobID&lt;BR /&gt; ,billToCustNum&lt;BR /&gt; ,billToCustomer&lt;BR /&gt; ,shipToCustNum&lt;BR /&gt; ,shipToCustomer&lt;BR /&gt; ,itemID&lt;BR /&gt; ,itemDesc&lt;BR /&gt; ,machineStateID&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctAvailability_U]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctAvailability_R]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,pctPerformance&lt;BR /&gt; ,pctQuality&lt;BR /&gt; ,pctWaste&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[calcPctOEE_U]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[calcPctOEE_R]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctOEE_U]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctOEE_R]&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;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; [Data Source Removed]; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problems are primarily with my dimension fields, but I am experiencing issues also with a couple of measure fields (itemDesc is one culprit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is anything I can do to resolve this and make it work as expected, it would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jan 2017 18:41:19 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-01-17T18:41:19Z</dc:date>
    <item>
      <title>Having trouble displaying information in Text Objects when using Direct Query</title>
      <link>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263639#M438098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two QVW files, each with virtually the same information:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;One pulls information from a SQL Database via a standard SELECT&lt;/LI&gt;&lt;LI&gt;The other pulls the same information from the same source, but via a DIRECT QUERY.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a drill-down group (Department --&amp;gt; Machine) in both qvw files.&lt;/P&gt;&lt;P&gt;When I select specific information to view, the table box reflects the information accurately for both qvw files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is, on the qvw with the standard SELECT, I get the exact information I need in the text objects based on specific conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, on the DIRECT QUERY qvw, some values display as expected, but others display as if the underlying field were null, when the Table Box &lt;STRONG&gt;clearly&lt;/STRONG&gt; depicts the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my question is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to I duplicate the information that is accurately showing in the standard SELECT qvw, into the DIRECT QUERY qvw.&amp;nbsp; Scripts for each are below:&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;SQL&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT machineID,&lt;BR /&gt; machineDesc,&lt;BR /&gt; deptID,&lt;BR /&gt; deptNum,&lt;BR /&gt; deptDesc,&lt;BR /&gt; colNum,&lt;BR /&gt; colDesc,&lt;BR /&gt; runTime,&lt;BR /&gt; setupTime,&lt;BR /&gt; downTime,&lt;BR /&gt; noProdTime,&lt;BR /&gt; totalTime,&lt;BR /&gt; curSpeed,&lt;BR /&gt; curLNFT,&lt;BR /&gt; qtyPerHour,&lt;BR /&gt; qtyProduced,&lt;BR /&gt; qtyWasted,&lt;BR /&gt; qtyProcessed,&lt;BR /&gt; MTBF,&lt;BR /&gt; downCount,&lt;BR /&gt; shiftDesc,&lt;BR /&gt; reportDT,&lt;BR /&gt; processID,&lt;BR /&gt; jobID,&lt;BR /&gt; billToCustNum,&lt;BR /&gt; billToCustomer,&lt;BR /&gt; shipToCustNum,&lt;BR /&gt; shipToCustomer,&lt;BR /&gt; itemID,&lt;BR /&gt; itemDesc,&lt;BR /&gt; machineStateID,&lt;BR /&gt; qtyLNFT,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctAvailability_U"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctAvailability_R"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; pctMaxSpeed,&lt;BR /&gt; pctPerformance,&lt;BR /&gt; pctQuality,&lt;BR /&gt; pctWaste,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"calcPctOEE_U"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"calcPctOEE_R"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctOEE_U"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"pctOEE_R"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; FROM [Data Source Removed]; &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;DIRECT&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;QUERY&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;DIMENSION&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; machineID&lt;BR /&gt; ,machineDesc&lt;BR /&gt; ,deptID&lt;BR /&gt; ,deptDesc&lt;BR /&gt; ,colNum&lt;BR /&gt; ,colDesc&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MEASURE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; runTime&lt;BR /&gt; ,setupTime&lt;BR /&gt; ,downTime&lt;BR /&gt; ,noProdTime&lt;BR /&gt; ,totalTime&lt;BR /&gt; ,curSpeed&lt;BR /&gt; ,curLNFT&lt;BR /&gt; ,qtyPerHour&lt;BR /&gt; ,qtyProduced&lt;BR /&gt; ,qtyLNFT&lt;BR /&gt; ,qtyWasted&lt;BR /&gt; ,qtyProcessed&lt;BR /&gt; ,MTBF&lt;BR /&gt; ,downCount&lt;BR /&gt; ,shiftDesc&lt;BR /&gt; ,reportDT&lt;BR /&gt; ,jobID&lt;BR /&gt; ,billToCustNum&lt;BR /&gt; ,billToCustomer&lt;BR /&gt; ,shipToCustNum&lt;BR /&gt; ,shipToCustomer&lt;BR /&gt; ,itemID&lt;BR /&gt; ,itemDesc&lt;BR /&gt; ,machineStateID&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctAvailability_U]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctAvailability_R]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,pctPerformance&lt;BR /&gt; ,pctQuality&lt;BR /&gt; ,pctWaste&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[calcPctOEE_U]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[calcPctOEE_R]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctOEE_U]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[pctOEE_R]&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;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; [Data Source Removed]; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problems are primarily with my dimension fields, but I am experiencing issues also with a couple of measure fields (itemDesc is one culprit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is anything I can do to resolve this and make it work as expected, it would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 18:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263639#M438098</guid>
      <dc:creator />
      <dc:date>2017-01-17T18:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Having trouble displaying information in Text Objects when using Direct Query</title>
      <link>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263640#M438099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure but Ref manual has something on this as direct query uses source database to fetch measure fields,&lt;/P&gt;&lt;P&gt;as it says - &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Differences between Data In-Memory and Database Data&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;QlikView is case-sensitive when making associations with in-memory data. Direct Discovery selects data&lt;/P&gt;&lt;P&gt;from source databases according to the case-sensitivity of the database. If a database is not case-sensitive, a&lt;/P&gt;&lt;P&gt;Direct Discovery query might return data that an in-memory query would not. For example, if the following&lt;/P&gt;&lt;P&gt;data exists in a database that is not case-sensitive, a Direct Discovery query of the value "Red" would return&lt;/P&gt;&lt;P&gt;all four rows.&lt;/P&gt;&lt;P&gt;an in-memory query may produce more matching values than a Direct Discovery query. &lt;/P&gt;&lt;P&gt;The matches returned for Direct Discovery data depends on the database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 19:22:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263640#M438099</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2017-01-17T19:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Having trouble displaying information in Text Objects when using Direct Query</title>
      <link>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263641#M438100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Case sensitivity is completely irrelevant in this situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also missed the point of my question.&amp;nbsp; So to clarify:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Given two separate QVW files, where the only difference is the querying method (in-memory vs direct discovery):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When the selections on each ARE THE SAME &lt;/STRONG&gt;(i.e. I'm making a selection on machineDesc and colDesc in EACH qvw), the values reflected in the &lt;STRONG&gt;table box&lt;/STRONG&gt; are the same (one row in each table box), I can clearly see that itemDesc has a value in both QVWs.&amp;nbsp; The problem is that the TEXT OBJECTs associated with that particular field (text:&amp;nbsp; =itemDesc) are displaying different values.&amp;nbsp; On the in-memory QVW, I get the same value as reflected in the table box.&amp;nbsp; To my knowledge, this works as designed and is what I expect.&amp;nbsp; On the direct-query QVW, I get a NULL value in the text object, even though the table-box&lt;STRONG&gt; CLEARLY SHOWS &lt;/STRONG&gt;a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is why?&amp;nbsp; I'm getting one value from the in-memory.&amp;nbsp; I'm getting the exact same value from the direct-discovery.&amp;nbsp; Why are the text objects different?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 21:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Having-trouble-displaying-information-in-Text-Objects-when-using/m-p/1263641#M438100</guid>
      <dc:creator />
      <dc:date>2017-01-17T21:36:22Z</dc:date>
    </item>
  </channel>
</rss>

