<?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 on Hierarchical data set qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411946#M94705</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response. I tried the above approach . However, I don't know how to implement in my hierarchical data set . Could you please help me ?&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jan 2024 12:10:06 GMT</pubDate>
    <dc:creator>Aspiring_Developer</dc:creator>
    <dc:date>2024-01-29T12:10:06Z</dc:date>
    <item>
      <title>Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411462#M94655</link>
      <description>&lt;P&gt;Hi Team ,&lt;/P&gt;
&lt;P&gt;I have below data set :-&lt;/P&gt;
&lt;TABLE width="448"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="83"&gt;Employee ID&lt;/TD&gt;
&lt;TD width="106"&gt;Employee Name&lt;/TD&gt;
&lt;TD width="103"&gt;Designation&lt;/TD&gt;
&lt;TD width="81"&gt;Job Level&lt;/TD&gt;
&lt;TD width="75"&gt;Salary Data&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;614&lt;/TD&gt;
&lt;TD&gt;Roy&lt;/TD&gt;
&lt;TD&gt;Senior Manager&lt;/TD&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;55&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;615&lt;/TD&gt;
&lt;TD&gt;Tom&lt;/TD&gt;
&lt;TD&gt;Team Lead&lt;/TD&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;TD&gt;45&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;701&lt;/TD&gt;
&lt;TD&gt;Roger&lt;/TD&gt;
&lt;TD&gt;Business Analyst&lt;/TD&gt;
&lt;TD&gt;E&lt;/TD&gt;
&lt;TD&gt;12&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;751&lt;/TD&gt;
&lt;TD&gt;Peter&lt;/TD&gt;
&lt;TD&gt;Business Analyst&lt;/TD&gt;
&lt;TD&gt;E&lt;/TD&gt;
&lt;TD&gt;45&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;888&lt;/TD&gt;
&lt;TD&gt;Adam&lt;/TD&gt;
&lt;TD&gt;Team Lead&lt;/TD&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;TD&gt;63&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My requirement is we have a filter pane in the front end of 'Job Level'&lt;/P&gt;
&lt;P&gt;When a user of job level C comes to see the dashboard , all the data should be visible . Now, when a user of job level D, see report , they should see their data and the data for career level E . Data for C level should not be visible , When a career level E sees, they should only see their data , no data for C, D should be visible . They should not be able to see the data for other E levels as well .&lt;/P&gt;
&lt;P&gt;Can anyone please help ? I tried below code ,but is not working :-&lt;/P&gt;
&lt;P&gt;Section Access;&lt;/P&gt;
&lt;P&gt;// Security Rules&lt;BR /&gt;AccessTable:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ACCESS, USERID, EMPLOYEE_ID, JOB_LEVEL&lt;BR /&gt;ADMIN, ADMIN, *, *&lt;BR /&gt;USER, 614, *, C&lt;BR /&gt;USER, 615, *, D&lt;BR /&gt;USER, 701, *, E&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Section Application;&lt;/P&gt;
&lt;P&gt;// Load your actual data&lt;BR /&gt;EmployeeData:&lt;BR /&gt;LOAD&lt;BR /&gt;EMPLOYEE_ID,&lt;BR /&gt;"Employee Name",&lt;BR /&gt;Designation,&lt;BR /&gt;JOB_LEVEL,&lt;BR /&gt;"Salary Data"&lt;BR /&gt;INLINE [&lt;BR /&gt;614, Roy, 'Senior Manager', C, 55&lt;BR /&gt;615, Tom, 'Team Lead', D, 45&lt;BR /&gt;701, Roger, 'Business Analyst', E, 12&lt;BR /&gt;751, Peter, 'Business Analyst', E, 45&lt;BR /&gt;888, Adam, 'Team Lead', D, 63&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone please help me with this ?&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22949"&gt;@tresB&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 14:39:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411462#M94655</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-26T14:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411740#M94684</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;Before implementing section access, you should create a hierarchy and then you have to include that hierarchy in section access, for example&lt;/P&gt;
&lt;TABLE border="1" width="97.96459647850934%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;ACCESS&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;USERID&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;JOB_LEVEL&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;ADMIN&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;614&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;*&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;USER&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;615&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;D&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;USER&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;615&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;USER&lt;/TD&gt;
&lt;TD&gt;701&lt;/TD&gt;
&lt;TD&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;USER&lt;/TD&gt;
&lt;TD&gt;888&lt;/TD&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;USER&lt;/TD&gt;
&lt;TD&gt;888&lt;/TD&gt;
&lt;TD&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So once you create this you can further use this to implement section access, to create a hierarchy, just check hierarchy and hierarchy belongs to function in qlik.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 05:07:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411740#M94684</guid>
      <dc:creator>GOKULAKANNAN</dc:creator>
      <dc:date>2024-01-29T05:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411946#M94705</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response. I tried the above approach . However, I don't know how to implement in my hierarchical data set . Could you please help me ?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 12:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2411946#M94705</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-29T12:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412123#M94715</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;below is the example which i have taken and try to modify based on your need,&lt;/P&gt;
&lt;P&gt;EmployeeData:&lt;BR /&gt;LOAD&lt;BR /&gt;*&lt;BR /&gt;INLINE [&lt;BR /&gt;EMPLOYEE_ID,EmployeeName,Designation,ParentId,SalaryData&lt;BR /&gt;1, Roy, 'Senior Manager', , 55&lt;BR /&gt;2, Tom, 'Team Lead', 1, 45&lt;BR /&gt;3, Roger, 'Business Analyst', 2, 12&lt;BR /&gt;4, Peter, 'Business Analyst', 5, 45&lt;BR /&gt;5, Adam, 'Team Lead',1, 63&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;[Ancestry Table temp]:&lt;BR /&gt;HierarchyBelongsTo(NodeID, AncestorID, NodeName, AncestorID, AncestorName, DepthDiff)&lt;BR /&gt;Load EMPLOYEE_ID as NodeID, ParentId as AncestorID, EmployeeName as NodeName Resident EmployeeData ;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;[Ancestry Table]:&lt;BR /&gt;Load&lt;BR /&gt;NodeID,&lt;BR /&gt;NodeName,&lt;BR /&gt;AncestorID,&lt;BR /&gt;AncestorName as [Rollup Emp],&lt;BR /&gt;DepthDiff&lt;BR /&gt;Resident [Ancestry Table temp];&lt;BR /&gt;// drop temp table.&lt;BR /&gt;drop table [Ancestry Table temp];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer the page :&amp;nbsp;&lt;A href="https://bigbear.ai/blog/hierarchies-in-qlik-sense/" target="_blank" rel="noopener"&gt;Hierarchies in Qlik Sense - BigBear.ai&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 17:31:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412123#M94715</guid>
      <dc:creator>GOKULAKANNAN</dc:creator>
      <dc:date>2024-01-29T17:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412167#M94719</link>
      <description>&lt;P&gt;See also&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Authorization-using-a-Hierarchy/ba-p/1476319" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Authorization-using-a-Hierarchy/ba-p/1476319&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://qhic.se/2023/09/04/unbalanced-n-level-hierarchies/" target="_blank"&gt;https://qhic.se/2023/09/04/unbalanced-n-level-hierarchies/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 19:55:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412167#M94719</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2024-01-29T19:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412644#M94768</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6622"&gt;@hic&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response. I've gone through the links and code snippets and this is what my code looks like :-&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_0-1706628898738.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158654iB10816C62B786EDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_0-1706628898738.png" alt="Aspiring_Developer_0-1706628898738.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_1-1706628922142.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158655i4799BA9B29776986/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_1-1706628922142.png" alt="Aspiring_Developer_1-1706628922142.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data Model Viewer&lt;/P&gt;
&lt;P&gt;We are not linking the two tables as it fact table measures should not be impacted by the filters of Ancestory table&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_2-1706628949955.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158656i48FFD6E256D428C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_2-1706628949955.png" alt="Aspiring_Developer_2-1706628949955.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I am very new to this hierarchical concept and not sure what to do next .Can anyone please help me on this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 15:37:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412644#M94768</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-30T15:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412662#M94771</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;from the above script, you will get Nodename and rollup emp, rollup emp should be NTNAME and Nodename should be renamed as NODENAME.&lt;/P&gt;
&lt;P&gt;So while writing section access,&lt;/P&gt;
&lt;P&gt;Section access;&lt;/P&gt;
&lt;P&gt;Load&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'USER' as ACCESS,&lt;/P&gt;
&lt;P&gt;NTNAME ,&lt;/P&gt;
&lt;P&gt;NODENAME&lt;/P&gt;
&lt;P&gt;resident TableName;&lt;/P&gt;
&lt;P&gt;So with the above table add the admin users as well, this will create a section access with hierarchy.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 15:59:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412662#M94771</guid>
      <dc:creator>GOKULAKANNAN</dc:creator>
      <dc:date>2024-01-30T15:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412688#M94774</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your response .&lt;/P&gt;
&lt;P&gt;I tried below script and even added my ID and name in it in order to see the application myself in the section access :-&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_0-1706634591986.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158677iE522550C69105B77/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_0-1706634591986.png" alt="Aspiring_Developer_0-1706634591986.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_1-1706632209195.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158673iA0EFC798AF5EA732/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_1-1706632209195.png" alt="Aspiring_Developer_1-1706632209195.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After reload , it is giving me below :-&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_2-1706632254543.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158674i345ACB7A616519B9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_2-1706632254543.png" alt="Aspiring_Developer_2-1706632254543.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure , what I did wrong ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412688#M94774</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-30T17:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412692#M94775</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;If you have a domain name then you have to add it, to find the domain name, inside the sheet create a KPI and add OSuser() as a measure , you will get 2 things, first one is domain , second one will be your user id, so for example , RE is domain, and GK is id, u have to mention it like "RE\GK" as NTNAME. Then only it will work, else it wont.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 16:37:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412692#M94775</guid>
      <dc:creator>GOKULAKANNAN</dc:creator>
      <dc:date>2024-01-30T16:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412706#M94778</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see below :-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I am making some mistake here in the section access script :-&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_1-1706634677917.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158678i9A1CCB63D42813BD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_1-1706634677917.png" alt="Aspiring_Developer_1-1706634677917.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_1-1706633504511.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158676iF1D040C86E78C18C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_1-1706633504511.png" alt="Aspiring_Developer_1-1706633504511.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Am not sure about the section access script . Do I need to define the rules here , not sure &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:11:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412706#M94778</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-30T17:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412709#M94779</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Write this and execute&lt;/P&gt;
&lt;P&gt;Section access;&lt;/P&gt;
&lt;P&gt;Load * inline&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;ACCESS,NTNAME,NODENAME&lt;/P&gt;
&lt;P&gt;'ADMIN', ur user id with domain, *&lt;/P&gt;
&lt;P&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;Thus u include it after the section access; key word,and keep the existing code as it is&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:02:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412709#M94779</guid>
      <dc:creator>GOKULAKANNAN</dc:creator>
      <dc:date>2024-01-30T17:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412712#M94780</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your help .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My last question to you is If I talk about the rest of the users, Do, I need to add their details in the preceding load of section access . I have not yet tested it with other users . How their access rule will be replicated when they will log in. If I need to section access preceding load inline table , How will I define for the rest of the Employee _Id's ?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:15:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412712#M94780</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-30T17:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412714#M94781</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;&amp;nbsp;, If u want to create for other users, u have to mention the ID properly with the domain name, and give parent id properly and use hierarchy function and it will create a hierarchy, validate it once before you implement the section access.&lt;/P&gt;
&lt;P&gt;NTNAME should be the parent name, NODENAME should be the child.&lt;/P&gt;
&lt;P&gt;So if Roy is the manager he should be tagged with all his child values, so for roy 5 rows should be there (considering 4 employees)&lt;/P&gt;
&lt;P&gt;In this way it will work, and u dont need to do anything else just to provide you the admin access we have added the inline in section access , that u have to keep, dont remove it&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412714#M94781</guid>
      <dc:creator>GOKULAKANNAN</dc:creator>
      <dc:date>2024-01-30T17:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Section access on Hierarchical data set qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412733#M94786</link>
      <description>&lt;P&gt;Thanks a lot&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129429"&gt;@GOKULAKANNAN&lt;/a&gt;&amp;nbsp;for your help.&lt;/P&gt;
&lt;P&gt;As you said I need to&amp;nbsp;&lt;SPAN&gt;mention the ID properly with the domain name, and give parent id properly and use hierarchy function and it will create a hierarchy, validate it once before you implement the section access.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Where should I define these user id's and domain name . Could you please explain it with my data set . A small table ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is my current script :-&lt;/P&gt;
&lt;P&gt;Data:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;Employee_ID, Employee_Name, Designation, Job_Level, Salary_Data&lt;BR /&gt;614, Roy, Senior Manager, C,55&lt;BR /&gt;615, Tom, Team Lead , D, 45&lt;BR /&gt;701, Roger, Business Analyst , E, 12&lt;BR /&gt;751, Peter, Business Analsyt, E, 45&lt;BR /&gt;888, Adam, Team Lead , D, 63&lt;BR /&gt;614142523,Vaishali, CEO,*, 79&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;Ancestory_Table_Temp:&lt;BR /&gt;HierarchyBelongsTo(NodeID,AncestorID,NodeName, AncestorID,AncestorName,DeptDiff)&lt;BR /&gt;Load Employee_ID as NodeID, Job_Level as AncestorID,Employee_Name as NodeName&lt;BR /&gt;Resident Data;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Ancestory_Table:&lt;BR /&gt;Load NodeID,&lt;BR /&gt;NodeName,&lt;BR /&gt;AncestorID,&lt;BR /&gt;AncestorName as [Rollup Emp],&lt;BR /&gt;DeptDiff&lt;BR /&gt;Resident Ancestory_Table_Temp;&lt;/P&gt;
&lt;P&gt;drop table Ancestory_Table_Temp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;// Implementing Section Access---//&lt;/P&gt;
&lt;P&gt;Section Access;&lt;/P&gt;
&lt;P&gt;Load * inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;ACCESS,NTNAME,NODENAME&lt;/P&gt;
&lt;P&gt;'ADMIN', IUSER\61414234, *,&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;'USER' as ACCESS,&lt;/P&gt;
&lt;P&gt;[Rollup Emp] as NTNAME ,&lt;/P&gt;
&lt;P&gt;NodeName as NODENAME&lt;/P&gt;
&lt;P&gt;resident Ancestory_Table;&lt;/P&gt;
&lt;P&gt;Section Application;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I need to do in the above script ?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 18:14:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-on-Hierarchical-data-set-qliksense/m-p/2412733#M94786</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2024-01-30T18:14:21Z</dc:date>
    </item>
  </channel>
</rss>

