<?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: How to hide sensitive data from GL report in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641075#M594643</link>
    <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;I think you must have mis-understanding what i trying to said. Base on the reading i think you try to delete the whole table , what i want is only remove some row of data at table , make is disappear. So it will still able to see the total expense amount. but unable to see the salary amount ?&lt;/P&gt;&lt;P&gt;Paul&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Oct 2019 07:23:14 GMT</pubDate>
    <dc:creator>paulyeo11</dc:creator>
    <dc:date>2019-10-30T07:23:14Z</dc:date>
    <item>
      <title>How to hide sensitive data from GL report</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641062#M594640</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have a GL exp table , it working fine.&lt;/P&gt;&lt;P&gt;GL_TABLE:&lt;BR /&gt;LOAD&lt;BR /&gt;'PMC' as SOURCE,&lt;BR /&gt;[Account Code] as AccountCode,&lt;BR /&gt;If([Account Code]&amp;gt;=8000000 and [Account Code]&amp;lt;=8900000,'EXP0') as [EXP0], //8008100 //SD SALARIES &amp;amp; ALLOWANCES&lt;BR /&gt;Date( Date#([Posting Date], 'DD.MM.YY'), 'DD/MM/YYYY') as [date],&lt;BR /&gt;Remarks,&lt;BR /&gt;[Deb./Cred. (LC)] AS Amount,&lt;BR /&gt;[Account Name] AS GL_DESC_&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Users\Paul Yeo\OneDrive - ISDN Holdings Limited\RAW DATA SAP\GL_PMC_2019.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is [Modified GL Data]);&lt;/P&gt;&lt;P&gt;For Each i in 108&lt;BR /&gt;WhatIfDimension$(i):&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Pls $(i)st Dim,Column$(i)&lt;BR /&gt;0_SOURCE,SOURCE&lt;BR /&gt;1_EXP LISTING,GL_DESC_&lt;BR /&gt;2_DRILL IN,Remarks,&lt;BR /&gt;3_YrMth,YearMonth&lt;BR /&gt;];&lt;BR /&gt;NEXT i;&lt;BR /&gt;&lt;BR /&gt;Due to Salary amount is sentitive. i like to hide it. can some one share with how to do it ? and yet not affected the total expense amount.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Paul&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 06:03:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641062#M594640</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-30T06:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide sensitive data from GL report</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641063#M594641</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;Enclosed my QVW&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 06:04:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641063#M594641</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-30T06:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide sensitive data from GL report</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641065#M594642</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;GL_TABLE:&lt;BR /&gt;LOAD&lt;BR /&gt;'PMC' as SOURCE,&lt;BR /&gt;[Account Code] as AccountCode,&lt;BR /&gt;If([Account Code]&amp;gt;=8000000 and [Account Code]&amp;lt;=8900000,'EXP0') as [EXP0], //8008100 //SD SALARIES &amp;amp; ALLOWANCES&lt;BR /&gt;Date( Date#([Posting Date], 'DD.MM.YY'), 'DD/MM/YYYY') as [date],&lt;BR /&gt;Remarks,&lt;BR /&gt;[Deb./Cred. (LC)] AS Amount,&lt;BR /&gt;[Account Name] AS GL_DESC_&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Users\Paul Yeo\OneDrive - ISDN Holdings Limited\RAW DATA SAP\GL_PMC_2019.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is [Modified GL Data]);&lt;/P&gt;&lt;P&gt;tempGL:&lt;BR /&gt;load&lt;BR /&gt;SOURCE,&lt;BR /&gt;AccountCode,&lt;BR /&gt;//EXP0,&lt;BR /&gt;date,&lt;BR /&gt;Remarks,&lt;BR /&gt;sum(Amount) as Amount,&lt;BR /&gt;GL_DESC_&lt;BR /&gt;resident&lt;BR /&gt;GL_TABLE&lt;BR /&gt;GROUP BY&lt;BR /&gt;SOURCE,&lt;BR /&gt;AccountCode,&lt;BR /&gt;//EXP0,&lt;BR /&gt;date,&lt;BR /&gt;Remarks,&lt;BR /&gt;GL_DESC_;&lt;/P&gt;&lt;P&gt;DROP TABLE GL_TABLE;&lt;BR /&gt;RENAME TABLE tempGL to GL_TABLE;&lt;/P&gt;&lt;P&gt;//continue with your for loop&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 06:09:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641065#M594642</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-10-30T06:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide sensitive data from GL report</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641075#M594643</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;I think you must have mis-understanding what i trying to said. Base on the reading i think you try to delete the whole table , what i want is only remove some row of data at table , make is disappear. So it will still able to see the total expense amount. but unable to see the salary amount ?&lt;/P&gt;&lt;P&gt;Paul&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 07:23:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1641075#M594643</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-30T07:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide sensitive data from GL report</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1643878#M594644</link>
      <description>&lt;P&gt;Paul, check out the following, only way of which I can think you may be able to do things, the only other option that comes to mind is the OMIT feature in Section Access, but I figured you did not want to add Section Access to the app...&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2018/Subsystems/Client/Content/QV_QlikView/Scripting/field-tags.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/November2018/Subsystems/Client/Content/QV_QlikView/Scripting/field-tags.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 16:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-sensitive-data-from-GL-report/m-p/1643878#M594644</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-11-06T16:25:19Z</dc:date>
    </item>
  </channel>
</rss>

