<?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 Automation in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508265#M36302</link>
    <description>Should be possible but thats a non qlikview issue.&lt;BR /&gt;What i have implemented is to use a DB table instead of excel (exactly same format) and use a simple custom web app to add new user into the table. Basically this webapp will be operated by admin team and becomes part of the process</description>
    <pubDate>Fri, 16 Nov 2018 16:18:54 GMT</pubDate>
    <dc:creator>dplr-rn</dc:creator>
    <dc:date>2018-11-16T16:18:54Z</dc:date>
    <item>
      <title>Section Access Automation</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508229#M36301</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; an excel source for Section Access placed at a location.Now When a user gets Access to a AD group,that particular user needs to be manually added to the Excel source.Can we basically Automate this Process like A User gets access to AD group and that user shd be getting added to Excel?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really appreciate your help.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Syed Imran&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2018 15:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508229#M36301</guid>
      <dc:creator>imrasyed</dc:creator>
      <dc:date>2018-11-16T15:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access Automation</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508265#M36302</link>
      <description>Should be possible but thats a non qlikview issue.&lt;BR /&gt;What i have implemented is to use a DB table instead of excel (exactly same format) and use a simple custom web app to add new user into the table. Basically this webapp will be operated by admin team and becomes part of the process</description>
      <pubDate>Fri, 16 Nov 2018 16:18:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508265#M36302</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2018-11-16T16:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access Automation</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508278#M36303</link>
      <description>&lt;P&gt;Adding to what was posted above, you can connect directly to the AD and read users and groups from Qlik script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;AD:&lt;BR /&gt;LOAD DISTINCT *;&lt;BR /&gt;SQL SELECT&lt;BR /&gt;sAMAccountName, name, distinguishedName, userPrincipalName&lt;BR /&gt;FROM 'LDAP://DC=subdomain, DC=domain, DC=net' WHERE objectCategory='person';&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You have a more refined example in Rob's recipe:&amp;nbsp;&lt;A href="http://qlikviewcookbook.com/list-recipes/" target="_blank"&gt;http://qlikviewcookbook.com/list-recipes/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2018 16:32:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508278#M36303</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-11-16T16:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access Automation</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508388#M36322</link>
      <description>It is possible to assign section access based on AD group. You need to use the section access field name GROUP.&lt;BR /&gt;&lt;BR /&gt;I've pasted in an SA examlple using GROUP below.&lt;BR /&gt;&lt;BR /&gt;section access;&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;ACCESS, USERID, GROUP, REDUCTION, OMIT&lt;BR /&gt;USER, *, ADMIN, *,&lt;BR /&gt;USER, *, A, 1,&lt;BR /&gt;USER, *, B, 2, NUM&lt;BR /&gt;USER, *, C, 3, ALPHA&lt;BR /&gt;USER, *, GROUP1, 3,&lt;BR /&gt;ADMIN, INTERNAL\SA_SCHEDULER, *, *,&lt;BR /&gt;];&lt;BR /&gt;section application;&lt;BR /&gt;&lt;BR /&gt;T1:&lt;BR /&gt;LOAD&lt;BR /&gt;*,&lt;BR /&gt;NUM AS REDUCTION;&lt;BR /&gt;LOAD&lt;BR /&gt;Chr( RecNo()+ord('A')-1) AS ALPHA,&lt;BR /&gt;RecNo() AS NUM&lt;BR /&gt;AUTOGENERATE 3;</description>
      <pubDate>Fri, 16 Nov 2018 21:21:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1508388#M36322</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2018-11-16T21:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access Automation</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1509220#M36342</link>
      <description>&lt;P&gt;Hi MVP,&lt;/P&gt;&lt;P&gt;Thanks for the help&lt;/P&gt;&lt;P&gt;but&amp;nbsp; if I want a particular user to get restricted for some territories(not all) under that group Will I be able to achieve it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Syed Imran&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 17:07:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1509220#M36342</guid>
      <dc:creator>imrasyed</dc:creator>
      <dc:date>2018-11-19T17:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access Automation</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1509532#M36375</link>
      <description>&lt;P&gt;Hi I am not able to see the example in the link you provided.Can you send me the correct link or do i need anything else to view the content.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 08:43:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-Automation/m-p/1509532#M36375</guid>
      <dc:creator>imrasyed</dc:creator>
      <dc:date>2018-11-20T08:43:53Z</dc:date>
    </item>
  </channel>
</rss>

