<?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: Object level section access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617429#M227543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached file for solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script used in the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Admin, A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User, B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User, C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USer, D&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ChartAccessMatrix:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;USERID, CH01, CH02&lt;/P&gt;&lt;P&gt;A,1,1&lt;/P&gt;&lt;P&gt;B,1,0&lt;/P&gt;&lt;P&gt;C,0,1&lt;/P&gt;&lt;P&gt;D,1,1];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When A user access the Dashboard he can see both CH01 and CH02.&lt;/P&gt;&lt;P&gt;When D user access the Dashboard he can see both CH01 and CH02.&lt;/P&gt;&lt;P&gt;When B user access the Dashboard he can see only CH01.&lt;/P&gt;&lt;P&gt;When c user access the Dashboard he can see only CH02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2014 05:22:26 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2014-03-25T05:22:26Z</dc:date>
    <item>
      <title>Object level section access</title>
      <link>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617426#M227540</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 need to apply section access such a way, depending on the user log in the number of objects visible to the user must vary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let say, I am having 10 charts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if user1 login to the report all 10 charts to be visible&lt;/P&gt;&lt;P&gt;if user2 log in only first 5 reports to be visible&lt;/P&gt;&lt;P&gt;if user3 then last 5 and &lt;/P&gt;&lt;P&gt;if user4 then chart 3,4,7,9,10 should be visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 05:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617426#M227540</guid>
      <dc:creator>santhosh_k_n</dc:creator>
      <dc:date>2014-03-25T05:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Object level section access</title>
      <link>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617427#M227541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use QVUSER() function in the layout condition of object&lt;/P&gt;&lt;P&gt;E.g.&lt;/P&gt;&lt;P&gt;If(QVUSER()='XYZ',1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nirav Bhimani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 05:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617427#M227541</guid>
      <dc:creator>nirav_bhimani</dc:creator>
      <dc:date>2014-03-25T05:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Object level section access</title>
      <link>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617428#M227542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nirav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. This works fine for limited user and limited charts,if users are more are around 20 to 30 then its bit difficult&lt;/P&gt;&lt;P&gt;2. If my section access is NT based will it work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 05:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617428#M227542</guid>
      <dc:creator>santhosh_k_n</dc:creator>
      <dc:date>2014-03-25T05:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Object level section access</title>
      <link>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617429#M227543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached file for solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script used in the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Admin, A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User, B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User, C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USer, D&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ChartAccessMatrix:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;USERID, CH01, CH02&lt;/P&gt;&lt;P&gt;A,1,1&lt;/P&gt;&lt;P&gt;B,1,0&lt;/P&gt;&lt;P&gt;C,0,1&lt;/P&gt;&lt;P&gt;D,1,1];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When A user access the Dashboard he can see both CH01 and CH02.&lt;/P&gt;&lt;P&gt;When D user access the Dashboard he can see both CH01 and CH02.&lt;/P&gt;&lt;P&gt;When B user access the Dashboard he can see only CH01.&lt;/P&gt;&lt;P&gt;When c user access the Dashboard he can see only CH02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 05:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617429#M227543</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-03-25T05:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Object level section access</title>
      <link>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617430#M227544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to show particular chart to many user and hide to few user then write this condition is reverse way&lt;/P&gt;&lt;P&gt;It will work with NT name as well.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(Wildmatch(QVUSER(),'XYZ','abc'),0,1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nirav Bhimani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 05:25:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Object-level-section-access/m-p/617430#M227544</guid>
      <dc:creator>nirav_bhimani</dc:creator>
      <dc:date>2014-03-25T05:25:04Z</dc:date>
    </item>
  </channel>
</rss>

