<?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 Sheet level security in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168104#M39393</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to give sheet access to the perticular departments. I put the condition for displaying the sheet.&lt;/P&gt;&lt;P&gt;Its working fine when I open it in Developer edition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I acess through client machine, It is not working. It is displaying all sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me? Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veman Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Nov 2010 07:49:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-11-02T07:49:36Z</dc:date>
    <item>
      <title>Sheet level security</title>
      <link>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168104#M39393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to give sheet access to the perticular departments. I put the condition for displaying the sheet.&lt;/P&gt;&lt;P&gt;Its working fine when I open it in Developer edition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I acess through client machine, It is not working. It is displaying all sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me? Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veman Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 07:49:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168104#M39393</guid>
      <dc:creator />
      <dc:date>2010-11-02T07:49:36Z</dc:date>
    </item>
    <item>
      <title>Sheet level security</title>
      <link>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168105#M39394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your script and conditions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 15:06:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168105#M39394</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2010-11-02T15:06:32Z</dc:date>
    </item>
    <item>
      <title>Sheet level security</title>
      <link>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168106#M39395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what conditions you have put-in.&lt;/P&gt;&lt;P&gt;I do use some conditional showing of sheets based on the Used ID's.&lt;/P&gt;&lt;P&gt;we have the function OSUser() which returns "Domain\UserID"&lt;/P&gt;&lt;P&gt;We can use a condition like this:&lt;/P&gt;&lt;P&gt;=if(only(if(UserID = OsUser(), UserID)) = OsUser(), 1 ,0)&lt;/P&gt;&lt;P&gt;Where UserID is the field I load from an excel files. (It has the list of User IDs who need access to the corresponding TAB)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Nov 2010 16:36:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168106#M39395</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-11-02T16:36:05Z</dc:date>
    </item>
    <item>
      <title>Sheet level security</title>
      <link>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168107#M39396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Please find the details of Script and sheet display condition below.&lt;/P&gt;&lt;P&gt;1. The script I am using is:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt; NAME, SH01, SH02, SH03&lt;BR /&gt; AAA, 1, 0, 1&lt;BR /&gt; BBB, 0, 1, 0&lt;BR /&gt; SERVER, 1, 1, 1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Section Access;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; ACCESS, NTNAME, NTDOMAINSID, NAME&lt;BR /&gt; USER, INDAAA, S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX, AAA&lt;BR /&gt; USER, INDBBB, S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX, BBB&lt;BR /&gt; ADMIN, INDSERVER, S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX, SERVER&lt;BR /&gt;];&lt;BR /&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2. The condition that I am using for sheet display is SUM(SH01)&amp;gt;=1 and SUM(SH02)&amp;gt;=1 and so on&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 04:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168107#M39396</guid>
      <dc:creator />
      <dc:date>2010-11-03T04:45:13Z</dc:date>
    </item>
    <item>
      <title>Sheet level security</title>
      <link>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168108#M39397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Please find the details of Script and sheet display condition below.&lt;/P&gt;&lt;P&gt;1. The script I am using is:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt; NAME, SH01, SH02, SH03&lt;BR /&gt; AAA, 1, 0, 1&lt;BR /&gt; BBB, 0, 1, 0&lt;BR /&gt; SERVER, 1, 1, 1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Section Access;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; ACCESS, NTNAME, NTDOMAINSID, NAME&lt;BR /&gt; USER, INDAAA, S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX, AAA&lt;BR /&gt; USER, INDBBB, S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX, BBB&lt;BR /&gt; ADMIN, INDSERVER, S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX, SERVER&lt;BR /&gt;];&lt;BR /&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2. The condition that I am using for sheet display is SUM(SH01)&amp;gt;=1 and SUM(SH02)&amp;gt;=1 and so on&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 04:45:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sheet-level-security/m-p/168108#M39397</guid>
      <dc:creator />
      <dc:date>2010-11-03T04:45:59Z</dc:date>
    </item>
  </channel>
</rss>

