<?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 implement section access in a Row-level &amp; sheet-level condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844623#M296620</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus for the reply. I will try again to elaborate my case in hope it will shed light to someone and will reply.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="section_access_authorization.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/91231_section_access_authorization.PNG" style="height: 196px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;so I have 3 metrics and 4 users A, B, C &amp;amp; D. and they have the following row level security requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i) Total Revenue: this metrics is to be accessed by all 4 Users who are sales person for zones 1,2,3, &amp;amp;4 respectively&lt;/P&gt;&lt;P&gt;ii) Total Inv: This metrics is to be accessed by only respective Users for zones. For eg User D can only see data pertaining to Zone 4, User B can see only data on zone 2 and so forth&lt;/P&gt;&lt;P&gt;iii) Count: same as Total Inv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how can I design section access to make this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relating this example to my 1st post, let jdoe be USERA and mdis be USERB. Zone A be Zone 1, Zone B be Zone 2.&lt;/P&gt;&lt;P&gt;Assuming these 3 metrics are in SH01. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTNAME, GROUP, User ID, Zone, SH01, SH02, SH03&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LAPTOP\JDOE, ADMIN, jdoe, A, 1, 0, 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;LAPTOP\MDIS&lt;/SPAN&gt;, ADMIN, mdis, B, 1, 1, 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;So I guess, simplifying the question...................&amp;gt;&amp;gt;is it possible to give access to all zones in 1 object but restrict in rest of the objects?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;any help would be kindly helpful &amp;amp; reciprocated. This is one of the last things in my current assignment and I would be really thankful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jun 2015 23:19:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-06-29T23:19:57Z</dc:date>
    <item>
      <title>how to implement section access in a Row-level &amp; sheet-level condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844621#M296618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Past problem: I was unable to implement row level &amp;amp; Sheet level security at the same time: I have 10 sheets(tabs), only 2 of them I do not want to be accessed by certain users. I also want to restrict row level data by zone. Meaning designated sales person in zones should be able to access their corresponding zone sales data. I was able to solve this by using the following script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD DISTINCT&lt;/P&gt;&lt;P&gt;&amp;nbsp; Upper(ACCESS), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper(NTNAME) as NTNAME&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp; qmc;&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;Star is *;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTNAME, GROUP, User ID, Zone, SH01, SH02, SH03 &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LAPTOP\JDOE, ADMIN, jdoe, A, 1, 0, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333330154419px;"&gt;LAPTOP\MDIS&lt;/SPAN&gt;, ADMIN, mdis, B, 1, 1, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;present Problem:&lt;/P&gt;&lt;P&gt;although the sales persons are supposed to see only their area, I have &lt;STRONG style="font-size: 12pt;"&gt;one&lt;/STRONG&gt; metrics where they should be ale to see data across all zones.&lt;/P&gt;&lt;P&gt;This field of restriction is 'Zone'. So now what changes do I need to make in the section access to allow this one metrics with data on all zones&amp;nbsp; to be accessed by all sales persons, while keeping the restriction by "Zone" on rest of the metrics and sheets.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 16:40:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844621#M296618</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-29T16:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to implement section access in a Row-level &amp; sheet-level condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844622#M296619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know from own experience that to combine different security level within one single application could be quite complicated and need a lot of efforts to implement them - by not knowing if it will work without to many compromises - and the efforts to maintain them could be worse, too. Therefore I suggest you rethink if you need them in one application or if you could use two/several applications - within the sense: keep it simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But of course you could try it - maybe this is helpful for you: &lt;A href="https://community.qlik.com/qlik-blogpost/2775"&gt;Basics for complex authorization&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 19:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844622#M296619</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-06-29T19:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to implement section access in a Row-level &amp; sheet-level condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844623#M296620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus for the reply. I will try again to elaborate my case in hope it will shed light to someone and will reply.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="section_access_authorization.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/91231_section_access_authorization.PNG" style="height: 196px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;so I have 3 metrics and 4 users A, B, C &amp;amp; D. and they have the following row level security requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i) Total Revenue: this metrics is to be accessed by all 4 Users who are sales person for zones 1,2,3, &amp;amp;4 respectively&lt;/P&gt;&lt;P&gt;ii) Total Inv: This metrics is to be accessed by only respective Users for zones. For eg User D can only see data pertaining to Zone 4, User B can see only data on zone 2 and so forth&lt;/P&gt;&lt;P&gt;iii) Count: same as Total Inv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how can I design section access to make this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relating this example to my 1st post, let jdoe be USERA and mdis be USERB. Zone A be Zone 1, Zone B be Zone 2.&lt;/P&gt;&lt;P&gt;Assuming these 3 metrics are in SH01. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTNAME, GROUP, User ID, Zone, SH01, SH02, SH03&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LAPTOP\JDOE, ADMIN, jdoe, A, 1, 0, 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;LAPTOP\MDIS&lt;/SPAN&gt;, ADMIN, mdis, B, 1, 1, 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;So I guess, simplifying the question...................&amp;gt;&amp;gt;is it possible to give access to all zones in 1 object but restrict in rest of the objects?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;any help would be kindly helpful &amp;amp; reciprocated. This is one of the last things in my current assignment and I would be really thankful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 23:19:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-implement-section-access-in-a-Row-level-sheet-level/m-p/844623#M296620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-29T23:19:57Z</dc:date>
    </item>
  </channel>
</rss>

