<?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- Hierarchy Level Following RSM, AMS &amp;amp; SUPERVISOR in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Section-Access-Hierarchy-Level-Following-RSM-AMS-amp-SUPERVISOR/m-p/2501167#M103289</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305098"&gt;@Sunil645454&lt;/a&gt;&amp;nbsp;Refer below script where MID is ManagerID, PID as ParentID.&lt;/P&gt;
&lt;P&gt;ABC:&lt;BR /&gt;load * inline [&lt;BR /&gt;MID, PID, Sale,Email&lt;BR /&gt;1,,20,A&lt;BR /&gt;3,1,30,B&lt;BR /&gt;4,1,40,C&lt;BR /&gt;2,3,40,D&lt;BR /&gt;5,3,50,E&lt;BR /&gt;12,4,60,F&lt;BR /&gt;13,4,10,G&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;VED:&lt;BR /&gt;Load MID as PID, Email as Email_PID Resident ABC;&lt;/P&gt;
&lt;P&gt;right join&lt;/P&gt;
&lt;P&gt;XYZ:&lt;BR /&gt;Load distinct PID Resident ABC;&lt;/P&gt;
&lt;P&gt;left Join(ABC)&lt;BR /&gt;load * Resident VED; Drop table VED;&lt;/P&gt;
&lt;P&gt;Section Access;&lt;BR /&gt;Load 'USER' as ACCESS,&lt;BR /&gt;Email_PID as USER.EMAIL,&lt;BR /&gt;Email&lt;BR /&gt;resident ABC;&lt;BR /&gt;Concatenate&lt;BR /&gt;&lt;BR /&gt;Load 'USER' as ACCESS,&lt;BR /&gt;Email as USER.EMAIL,&lt;BR /&gt;Email&lt;BR /&gt;resident ABC;&lt;BR /&gt;Section Application;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2025 11:48:47 GMT</pubDate>
    <dc:creator>Bhushan_Mahajan</dc:creator>
    <dc:date>2025-01-14T11:48:47Z</dc:date>
    <item>
      <title>Section Access- Hierarchy Level Following RSM, AMS &amp; SUPERVISOR</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Hierarchy-Level-Following-RSM-AMS-amp-SUPERVISOR/m-p/2496544#M102672</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;
&lt;P&gt;Please find the below script and&amp;nbsp; where all users can only see their own data only however I want&amp;nbsp; like below&lt;/P&gt;
&lt;H3&gt;Explanation of Script:&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;ADMIN&lt;/CODE&gt; Access&lt;/STRONG&gt;: The &lt;CODE&gt;ADMIN&lt;/CODE&gt; role (e.g., &lt;CODE&gt;rohit.saktel@demo.ai&lt;/CODE&gt;) has unrestricted access to all data using the &lt;CODE&gt;*&lt;/CODE&gt; wildcard.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;ASM Access&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Users like &lt;CODE&gt;sunil.kumar@demo.ai&lt;/CODE&gt; and &lt;CODE&gt;nikhil.thakur@demo.ai&lt;/CODE&gt; can see their data and all supervisors reporting under them.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Supervisor Access&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Supervisors (&lt;CODE&gt;M002&lt;/CODE&gt;, &lt;CODE&gt;M005&lt;/CODE&gt;, &lt;CODE&gt;M006&lt;/CODE&gt;, etc.) can only see their own records&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Data:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sunil645454_0-1733487909658.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/175337iD7DF10105F677202/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sunil645454_0-1733487909658.png" alt="Sunil645454_0-1733487909658.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Section Access:-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sunil645454_1-1733487942268.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/175338i47364391AEBD2DB6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sunil645454_1-1733487942268.png" alt="Sunil645454_1-1733487942268.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;My_Table:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sunil645454_2-1733487990122.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/175339iA0FC759618B3B20D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sunil645454_2-1733487990122.png" alt="Sunil645454_2-1733487990122.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please advise, Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 12:27:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Hierarchy-Level-Following-RSM-AMS-amp-SUPERVISOR/m-p/2496544#M102672</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2024-12-06T12:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access- Hierarchy Level Following RSM, AMS &amp; SUPERVISOR</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Hierarchy-Level-Following-RSM-AMS-amp-SUPERVISOR/m-p/2501167#M103289</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305098"&gt;@Sunil645454&lt;/a&gt;&amp;nbsp;Refer below script where MID is ManagerID, PID as ParentID.&lt;/P&gt;
&lt;P&gt;ABC:&lt;BR /&gt;load * inline [&lt;BR /&gt;MID, PID, Sale,Email&lt;BR /&gt;1,,20,A&lt;BR /&gt;3,1,30,B&lt;BR /&gt;4,1,40,C&lt;BR /&gt;2,3,40,D&lt;BR /&gt;5,3,50,E&lt;BR /&gt;12,4,60,F&lt;BR /&gt;13,4,10,G&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;VED:&lt;BR /&gt;Load MID as PID, Email as Email_PID Resident ABC;&lt;/P&gt;
&lt;P&gt;right join&lt;/P&gt;
&lt;P&gt;XYZ:&lt;BR /&gt;Load distinct PID Resident ABC;&lt;/P&gt;
&lt;P&gt;left Join(ABC)&lt;BR /&gt;load * Resident VED; Drop table VED;&lt;/P&gt;
&lt;P&gt;Section Access;&lt;BR /&gt;Load 'USER' as ACCESS,&lt;BR /&gt;Email_PID as USER.EMAIL,&lt;BR /&gt;Email&lt;BR /&gt;resident ABC;&lt;BR /&gt;Concatenate&lt;BR /&gt;&lt;BR /&gt;Load 'USER' as ACCESS,&lt;BR /&gt;Email as USER.EMAIL,&lt;BR /&gt;Email&lt;BR /&gt;resident ABC;&lt;BR /&gt;Section Application;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 11:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Hierarchy-Level-Following-RSM-AMS-amp-SUPERVISOR/m-p/2501167#M103289</guid>
      <dc:creator>Bhushan_Mahajan</dc:creator>
      <dc:date>2025-01-14T11:48:47Z</dc:date>
    </item>
  </channel>
</rss>

