<?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: Section Access, fiter per sheet in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1678794#M728510</link>
    <description>&lt;P&gt;One additional link for you that might be helpful:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/A-Primer-on-Section-Access/ba-p/1465766" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/A-Primer-on-Section-Access/ba-p/1465766&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There are a few extra links at the bottom of that post related to dynamic reduction, which is what you are looking to do potentially, but another way may be to just try using the Conditional Show option in the Sheet Properties and use either the OSUser() or QVUser() depending upon which Section Access you are doing may work too and be a bit more simple for you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/SystemFunctions/system-functions.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/SystemFunctions/system-functions.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2020 22:34:05 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2020-02-24T22:34:05Z</dc:date>
    <item>
      <title>Section Access, fiter per sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1671439#M728507</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;I want to block some sheets per user, and now I only did the Section Access:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;SECTION Access;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;LOAD * INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;ACCESS, USERID, PASSWORD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;ADMIN, ADMIN, password&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;USER, USER, password&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;SECTION Application;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Someone can help me to filter the acces per user in each sheet?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Thanks!!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1671439#M728507</guid>
      <dc:creator>Natalie</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access, fiter per sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1671455#M728508</link>
      <description>&lt;P&gt;Section access is primarily designed for reducing/slicing data not visual elements. So you can't remove elements from the application based on section access,&amp;nbsp;&lt;EM&gt;but&amp;nbsp;&lt;/EM&gt;you can hide elements. Hidden elements will remain hidden for users in the accespoint, but if they gain access to the qvw there are ways to display hidden elements in the desktop.&lt;/P&gt;&lt;P&gt;Try the SA below and then define a show condition on your Dashboard sheet that the SHEET value 'DASHBOARD' needs to be available in order to display, do the same for your analysis sheet, etc...&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;SECTION Access;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;LOAD ACCESS, USERID, PASSWORD, &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;subfield(SHEETS, '|') as SHEET&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;ACCESS, USERID, PASSWORD, SHEETS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;ADMIN, ADMIN, password, DASHBOARD|ANALYSIS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;USER, USER, password, DASHBOARD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#993300"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;SECTION Application;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;SHEETS:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;LOAD * INLINE [&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;SHEET&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;DASHBOARD&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;ANALYSIS&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;LOAD ...the rest of your data model.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 19:39:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1671455#M728508</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-01-31T19:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access, fiter per sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1678794#M728510</link>
      <description>&lt;P&gt;One additional link for you that might be helpful:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/A-Primer-on-Section-Access/ba-p/1465766" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/A-Primer-on-Section-Access/ba-p/1465766&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There are a few extra links at the bottom of that post related to dynamic reduction, which is what you are looking to do potentially, but another way may be to just try using the Conditional Show option in the Sheet Properties and use either the OSUser() or QVUser() depending upon which Section Access you are doing may work too and be a bit more simple for you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/SystemFunctions/system-functions.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/SystemFunctions/system-functions.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 22:34:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-fiter-per-sheet/m-p/1678794#M728510</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-02-24T22:34:05Z</dc:date>
    </item>
  </channel>
</rss>

