<?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: Data filtered by user in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681679#M51872</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/41889"&gt;@asanfelix&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Documents-Videos/Making-Sense-of-Section-Access-in-Qlik-Sense/tac-p/1493722#M3010" target="_self"&gt;This&lt;/A&gt; post by&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49457"&gt;@Dalton_Ruer&lt;/a&gt;&amp;nbsp;is probably the best I've seen on the topic. I would recommend working through the PDF and getting an understanding of how section access works before implementing it, otherwise you'll just be guessing. I'm sure his example will help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mauritz&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2020 13:22:46 GMT</pubDate>
    <dc:creator>Mauritz_SA</dc:creator>
    <dc:date>2020-03-04T13:22:46Z</dc:date>
    <item>
      <title>Data filtered by user</title>
      <link>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681652#M51870</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i have an app with lot of tables related to a master table with information about sales products.&lt;/P&gt;&lt;P&gt;Each product get assigned his brand.&lt;/P&gt;&lt;P&gt;I'd like that "USER01" can only see data about products of brand "BRAND01", and all the other users can see everything.&lt;/P&gt;&lt;P&gt;I have seen posts talking about Section Access, but i'm not able to know how to solve my problem using Section Access.&lt;/P&gt;&lt;P&gt;Is there any way to do this?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:32:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681652#M51870</guid>
      <dc:creator>asanfelix</dc:creator>
      <dc:date>2021-12-20T21:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data filtered by user</title>
      <link>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681679#M51872</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/41889"&gt;@asanfelix&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Documents-Videos/Making-Sense-of-Section-Access-in-Qlik-Sense/tac-p/1493722#M3010" target="_self"&gt;This&lt;/A&gt; post by&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49457"&gt;@Dalton_Ruer&lt;/a&gt;&amp;nbsp;is probably the best I've seen on the topic. I would recommend working through the PDF and getting an understanding of how section access works before implementing it, otherwise you'll just be guessing. I'm sure his example will help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mauritz&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 13:22:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681679#M51872</guid>
      <dc:creator>Mauritz_SA</dc:creator>
      <dc:date>2020-03-04T13:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data filtered by user</title>
      <link>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681700#M51878</link>
      <description>&lt;P&gt;section access is pretty simple - I'll take your example for using BRAND01. You want to figure out what your domain and user id is by going into your QMC. Essentially there are 2 parts. Section Access and Section Application. Under the Section Access, you can see I have 3 columns. You must always include the "ADMIN, INTERNAL\SA_SCHEDULER". I added yourself as an Admin since I'm assume you'd want to see all the data, but loaded a regular "user" for the user that should see only BRAND01. The "1" under the "user" line denotes that that user should only see data pertaining to BRAND01. I created a linkage through PRODUCTID as you can see in the script below. If you want to restrict other brands from other users, you can just sequentially add rows underneath the section application script with the the updated brands and add the respective productid number to the section access piece (part 1 of the Section Access). Hope this helps and sheds light. One last thing - make sure your data here is all uppercased.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;SECTION ACCESS;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;ACCESS, USER_ID, PRODUCTID&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;ADMIN, domain\*YOUR ID FOUND FROM QMC*, ,&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;USER, domain\*YOUR USER*, 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;ADMIN, INTERNAL\SA_SCHEDULER,*,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;SECTION APPLICATION;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;PRODUCTID, PRODUCT&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;1, BRAND01&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080"&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 14:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-filtered-by-user/m-p/1681700#M51878</guid>
      <dc:creator>124rooski</dc:creator>
      <dc:date>2020-03-04T14:14:51Z</dc:date>
    </item>
  </channel>
</rss>

