<?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: Sheet level access in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002269#M83019</link>
    <description>&lt;P&gt;Just chiming in with something here - do keep in mind that this is &lt;U&gt;not security&lt;/U&gt; and any user with a Professional license will be able to duplicate the hidden sheet if they wish to. Any user regardless of license will be able to access the information contained within the sheet unless that information is otherwise blocked (using data access permissions / OMIT fields).&lt;/P&gt;</description>
    <pubDate>Wed, 09 Nov 2022 10:31:12 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2022-11-09T10:31:12Z</dc:date>
    <item>
      <title>Sheet level access</title>
      <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002151#M83008</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;i am trying to sheet level access using show condition in sheet properties.&lt;/P&gt;
&lt;P&gt;but not working for me.&lt;/P&gt;
&lt;P&gt;Requirement is i have 4 sheets, 2 sheets will see everyone and 2 sheets will see only some of them.&lt;/P&gt;
&lt;P&gt;please help me. thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 07:24:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002151#M83008</guid>
      <dc:creator>nvijay5757</dc:creator>
      <dc:date>2022-11-09T07:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sheet level access</title>
      <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002156#M83010</link>
      <description>Hi &lt;BR /&gt;Access should be controlled by security rules on the QMC. &lt;BR /&gt;</description>
      <pubDate>Wed, 09 Nov 2022 07:30:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002156#M83010</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2022-11-09T07:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sheet level access</title>
      <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002159#M83011</link>
      <description>&lt;P&gt;Hi you can use section access, add a flag so each user has 1 or 0, and use that flag in the show condition of the sheet:&lt;/P&gt;
&lt;P&gt;Section access:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Section access;
load * Inline [
USERID		,SEESALL
FDS\VNALAMOT	,1
FDS\JSARKAR1	,0
];

Section application;
// The app script&lt;/LI-CODE&gt;
&lt;P&gt;Sheet show condition&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=SEESALL&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 07:34:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002159#M83011</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-09T07:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sheet level access</title>
      <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002249#M83016</link>
      <description>&lt;P&gt;Thanks Rubenmarin,&lt;/P&gt;
&lt;P&gt;Sheet show condition will give as SEESALL, then for example JSARKAR1 will give the access to another sheet how.&lt;/P&gt;
&lt;P&gt;like sheet1-SEESALL&lt;/P&gt;
&lt;P&gt;sheet2-SEESALL.&amp;nbsp; how will give the access to sheet2 for other user.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 09:47:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002249#M83016</guid>
      <dc:creator>nvijay5757</dc:creator>
      <dc:date>2022-11-09T09:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: Sheet level access</title>
      <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002263#M83018</link>
      <description>&lt;P&gt;You can add additional fields to give access by user/sheet:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Section access;
load * Inline [
USERID		,SEESALL, SH1, SH2
FDS\VNALAMOT	,1 ,1 ,1
FDS\JSARKAR1	,0 ,0 ,1
FDS\OTHER	,0 ,1 ,0
];

Section application;
// The app script&lt;/LI-CODE&gt;
&lt;P&gt;The expression for SH1 would be "=SH1" or "=SH1 or SEESALL"&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 10:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002263#M83018</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-09T10:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sheet level access</title>
      <link>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002269#M83019</link>
      <description>&lt;P&gt;Just chiming in with something here - do keep in mind that this is &lt;U&gt;not security&lt;/U&gt; and any user with a Professional license will be able to duplicate the hidden sheet if they wish to. Any user regardless of license will be able to access the information contained within the sheet unless that information is otherwise blocked (using data access permissions / OMIT fields).&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 10:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sheet-level-access/m-p/2002269#M83019</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-11-09T10:31:12Z</dc:date>
    </item>
  </channel>
</rss>

