<?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 Section Access for all the values (*) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151521#M1252836</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to implement section access on a field with NTNAME. Here is my script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, NTNAME, FIELD&lt;/P&gt;&lt;P&gt;ADMIN, USER1,&lt;/P&gt;&lt;P&gt;ADMIN, USER2,&lt;/P&gt;&lt;P&gt;USER, USER3, A&lt;/P&gt;&lt;P&gt;USER, USER4, B ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works perfectly fine on desktop. When I publish this on Server, it says "Failed to open document. Access denied". When tried putting in a value for FIELD beside Admin, I can see the data related to that value or else the access is denied. I cannot manually include all the values for FIELD as I have few hundreds. How can I specify ALL values for Admins. Using * is giving me only A and B access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
    <dc:creator>reshmakala</dc:creator>
    <dc:date>2026-01-26T18:19:17Z</dc:date>
    <item>
      <title>Section Access for all the values (*)</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151521#M1252836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to implement section access on a field with NTNAME. Here is my script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, NTNAME, FIELD&lt;/P&gt;&lt;P&gt;ADMIN, USER1,&lt;/P&gt;&lt;P&gt;ADMIN, USER2,&lt;/P&gt;&lt;P&gt;USER, USER3, A&lt;/P&gt;&lt;P&gt;USER, USER4, B ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works perfectly fine on desktop. When I publish this on Server, it says "Failed to open document. Access denied". When tried putting in a value for FIELD beside Admin, I can see the data related to that value or else the access is denied. I cannot manually include all the values for FIELD as I have few hundreds. How can I specify ALL values for Admins. Using * is giving me only A and B access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151521#M1252836</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access for all the values (*)</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151522#M1252838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create a dummy table with all the distinct FIELD and join it with your default section access table.&lt;/P&gt;&lt;P&gt;Hope below example will give you details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section_Access_Table:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'ADMIN' as ACCESS,&lt;/P&gt;&lt;P&gt;'ADMIN' as NTNAME,&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;SQL select distinct FIELD from Table_Name;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, NTNAME, FIELD&lt;/P&gt;&lt;P&gt;ADMIN, USER1,&lt;/P&gt;&lt;P&gt;ADMIN, USER2,&lt;/P&gt;&lt;P&gt;USER, USER3, A&lt;/P&gt;&lt;P&gt;USER, USER4, B ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;Load * from Section_Access_Table;&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 20:19:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151522#M1252838</guid>
      <dc:creator>krishnacbe</dc:creator>
      <dc:date>2016-07-13T20:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access for all the values (*)</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151523#M1252842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create a dummy table with all the distinct FIELD and join it with your default section access table.&lt;/P&gt;&lt;P&gt;Hope below example will give you details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section_Access_Table:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'ADMIN' as ACCESS,&lt;/P&gt;&lt;P&gt;'ADMIN' as NTNAME,&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;SQL select distinct FIELD from Table_Name;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, NTNAME, FIELD&lt;/P&gt;&lt;P&gt;ADMIN, USER1, *&lt;/P&gt;&lt;P&gt;ADMIN, USER2, *&lt;/P&gt;&lt;P&gt;USER, USER3, A&lt;/P&gt;&lt;P&gt;USER, USER4, B ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;Load * from Section_Access_Table;&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 20:20:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-for-all-the-values/m-p/1151523#M1252842</guid>
      <dc:creator>krishnacbe</dc:creator>
      <dc:date>2016-07-13T20:20:14Z</dc:date>
    </item>
  </channel>
</rss>

