<?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: Problems with Section Access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417441#M155216</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, that works.  I’ll try and slowly fit in my dynamic data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Nov 2012 17:06:24 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-11-08T17:06:24Z</dc:date>
    <item>
      <title>Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417428#M155203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm playing around with inline section access to test out functionality.&amp;nbsp; I'm having trouble logging in with USERs.&amp;nbsp; ADMINs just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, ADMIN, ADMINPWD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, BOB, BOBPWD&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;USERID, Representative&lt;/P&gt;&lt;P&gt;BOB, BOB&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When opening the document using the admin user, it opens just fine.&amp;nbsp; If I try to use a USER userid, I get "Access denied to this Qlikview document"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone know what I'm doing wrong?&amp;nbsp; I have reloaded after adding. I have "Initial Data Redectuion Based on Section Access" and "Strict Exclusion" checked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:08:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417428#M155203</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417429#M155204</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;It is related to your Section Application part, the field Representative should be in UPPER CASE for this to work. But also, that field (and not USERID) should be the one to link to section access table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said that, you only need this field/table if you want to restrict access for Bob to a certain cut of the Data (i.e. to any data that is linked to his name as a Representative. If you don't want to do that then you can remove that part of the implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To protect the document, and simply allow each authorised user to see the whole document, just limit your code to the first part which looks fine to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Nigel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:16:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417429#M155204</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417430#M155205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct, I'm trying to limit access.&amp;nbsp; So you are saying this where representative is the actual field I want to cut data from?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, NAME&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, ADMIN, ADMINPWD, ADMIN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, BOB, BOBPWD, BOB&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;NAME, REPRESENTATIVE&lt;/P&gt;&lt;P&gt;BOB, BOB&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And what if I want to give Bob access to two Reps data, is it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, NAME&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, ADMIN, ADMINPWD, ADMIN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, BOB, BOBPWD, BOB&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;NAME, REPRESENTATIVE&lt;/P&gt;&lt;P&gt;BOB, BOB&lt;/P&gt;&lt;P&gt;BOB, TERRY&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:21:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417430#M155205</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417431#M155206</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;Please refer this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/docs/DOC-1853"&gt;http://community.qlik.com/docs/DOC-1853&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It helps for section access&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:26:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417431#M155206</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-11-08T16:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417432#M155207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The field that you want to limit must be in the section acces table and&lt;/P&gt;&lt;P&gt;should contain the limit you want to enforce, I'm guessing that you have&lt;/P&gt;&lt;P&gt;some sales data and Bob is a Sales Rep, you have a dimension for the&lt;/P&gt;&lt;P&gt;sales rep with a column called Representative, and you want to make sure&lt;/P&gt;&lt;P&gt;that Bob only see's data that is "his own". &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Also note the following:&lt;/P&gt;&lt;P&gt;Add a Star is * line before all of your code:&lt;/P&gt;&lt;P&gt;The * against the ADMIN line in section access means that this user can&lt;/P&gt;&lt;P&gt;see all data&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Note that in the code below I'm aasuming that RepData: is actually what&lt;/P&gt;&lt;P&gt;you have as a dimension table against your data model.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;STAR IS *;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ACCESS, USERID, PASSWORD, REPRESENTATIVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ADMIN, ADMIN, ADMINPWD, *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    USER, BOB, BOBPWD, BOB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RepData: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME, REPRESENTATIVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BOB HOSKINS, BOB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:29:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417432#M155207</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417433#M155208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate the link to the document but I continue to only be able to open the file as admin.&amp;nbsp; User types get access denied still.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my current hidden script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STAR IS *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, REPRESENTATIVE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, ADMIN, ADMINPWD, *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, BOB, BOBPWD, BOB&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;Reps:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rep as REPRESENTATIVE; &lt;/P&gt;&lt;P&gt;SQL SELECT&amp;nbsp; name, rep&lt;/P&gt;&lt;P&gt;FROM mydb.dbo.reps;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:50:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417433#M155208</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417434#M155209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First, try removing the REPRESENTATIVE part of the section access table,&lt;/P&gt;&lt;P&gt;this will just make sure that your section access code protects the&lt;/P&gt;&lt;P&gt;document and that your problem is in the link to REPRESENTATIVE.  Let me&lt;/P&gt;&lt;P&gt;know if this works and we'll move forward, I'll do the same thing on a&lt;/P&gt;&lt;P&gt;test document here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:54:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417434#M155209</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417435#M155210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this works but only if I uncheck "Initial Data Redectuion Based on Section Access" and "Strict Exclusion"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If those are checked I can't even login as a user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this is my new hidden script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STAR IS *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, ADMIN, ADMINPWD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, BOB, BOBPWD&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;Reps:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rep as REPRESENTATIVE; &lt;/P&gt;&lt;P&gt;SQL SELECT&amp;nbsp; name, rep&lt;/P&gt;&lt;P&gt;FROM mydb.dbo.reps;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:57:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417435#M155210</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417436#M155211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tried your code, it worked fine!&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;All I did was replace you SQL statement with an inline load, I opened&lt;/P&gt;&lt;P&gt;the document and it asked for a user name and password, I put in BOB,&lt;/P&gt;&lt;P&gt;BOBPWD and the document came up with only BOB showing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:58:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417436#M155211</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417437#M155212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the server, are you using NTFS authorisation?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:58:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417437#M155212</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417438#M155213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 16:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417438#M155213</guid>
      <dc:creator />
      <dc:date>2012-11-08T16:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417439#M155214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow.  Ok.  Now I’m really confused.  I think I’ll start a new document and see what I can do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:01:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417439#M155214</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417440#M155215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417440#M155215</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417441#M155216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, that works.  I’ll try and slowly fit in my dynamic data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:06:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417441#M155216</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417442#M155217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you login with your test one using admin and adminpwd you still only see Bob?  Not the other two you added to the inline table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:09:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417442#M155217</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417443#M155218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code really is the same as yours so what I suggest is that you&lt;/P&gt;&lt;P&gt;cross-check my document settings with your own, it is likely to be&lt;/P&gt;&lt;P&gt;related to something on the "Opening" or "Security" tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:09:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417443#M155218</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417444#M155219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;You need to make the &lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Reduction field and Section Access Fields in UPPER CASE&lt;/STRONG&gt;&lt;/SPAN&gt;. Although, if you are using&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt; INLINE Load then QlikView implicitly converts them to UPPER CASE.&lt;/STRONG&gt;&lt;/SPAN&gt; But if you are loading from Excel / Databases / Other Sources then you need to make the field values in UPPER CASE.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;Please be very careful using the '*' (Wildcard) because it doesn't mean all the values in the Actual Field. It means distinct values you have specified in Section Access Table. Unless you have specified all the distinct values within Section Access.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;Please read this thread for detailed information and example:&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/247356#247356"&gt;http://community.qlik.com/message/247356#247356&lt;/A&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;Good luck!&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;Cheers,&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;DV&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;&lt;A href="http://www.QlikShare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417444#M155219</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-11-08T17:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417445#M155220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deepak is correct (thanks)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I missed the other names in section access, please see attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:19:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417445#M155220</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417446#M155221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, this is what I was doing.  I thought only the field name had to be upper, not the actual values.  Thank you for the help.  Sometimes I feel like an idiot. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:21:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417446#M155221</guid>
      <dc:creator />
      <dc:date>2012-11-08T17:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417447#M155222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;You are welcome Nigel. Also, remember the reduction field name can be in mixed or lower case but the field values should be in upper case. This applies to the Section Access Reduction Field &amp;amp; also original Field Values. I had provided detailed explanation in the above link with sample script.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;I hope this makes sense!&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;Cheers,&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;DV&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;EM&gt;&lt;A href="http://www.QlikShare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:24:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Section-Access/m-p/417447#M155222</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-11-08T17:24:51Z</dc:date>
    </item>
  </channel>
</rss>

