<?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 Mapping all id's to admin using section access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Mapping-all-id-s-to-admin-using-section-access/m-p/655935#M239512</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have one table containing multiple ids&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have defined section access table in which i have entry as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NTName&amp;nbsp;&amp;nbsp; ID&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS &lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12&amp;nbsp;&amp;nbsp;&amp;nbsp; USER&lt;/P&gt;&lt;P&gt;C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 114&amp;nbsp;&amp;nbsp;&amp;nbsp; USER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am joining this section table with my main table containing multiple Ids on a field ID but when NTNAME A user logins who has admin privilages he is able to see only two ids defined in section access table that 12 and 114.. Why is that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am i missing on anything or join is incorrect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2014 12:28:24 GMT</pubDate>
    <dc:creator>rsdhavle</dc:creator>
    <dc:date>2014-09-09T12:28:24Z</dc:date>
    <item>
      <title>Mapping all id's to admin using section access</title>
      <link>https://community.qlik.com/t5/QlikView/Mapping-all-id-s-to-admin-using-section-access/m-p/655935#M239512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have one table containing multiple ids&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have defined section access table in which i have entry as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NTName&amp;nbsp;&amp;nbsp; ID&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS &lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12&amp;nbsp;&amp;nbsp;&amp;nbsp; USER&lt;/P&gt;&lt;P&gt;C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 114&amp;nbsp;&amp;nbsp;&amp;nbsp; USER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am joining this section table with my main table containing multiple Ids on a field ID but when NTNAME A user logins who has admin privilages he is able to see only two ids defined in section access table that 12 and 114.. Why is that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am i missing on anything or join is incorrect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 12:28:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapping-all-id-s-to-admin-using-section-access/m-p/655935#M239512</guid>
      <dc:creator>rsdhavle</dc:creator>
      <dc:date>2014-09-09T12:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Mapping all id's to admin using section access</title>
      <link>https://community.qlik.com/t5/QlikView/Mapping-all-id-s-to-admin-using-section-access/m-p/655936#M239513</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;* used like this means all the other defined values, as you have observed. You will need define the other values in some way. For example, create a dummy user with NONE for Access and one line for each of the IDs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NTNAME, ID, ACCESS&lt;/P&gt;&lt;P&gt;Dummy, 1, NONE&lt;/P&gt;&lt;P&gt;Dummy, 2, NONE&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else in your load script, translate the * line into one line per ID for the ADMIN user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NTNAME, ID,&amp;nbsp; ACCESS&lt;/P&gt;&lt;P&gt;A, 1, ADMIN&lt;/P&gt;&lt;P&gt;A, 2, ADMIN&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 12:41:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapping-all-id-s-to-admin-using-section-access/m-p/655936#M239513</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-09-09T12:41:43Z</dc:date>
    </item>
  </channel>
</rss>

