<?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 in personal edition? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399688#M701491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;section access will make all values for USERID (and other "access" specific fields) uppercase, which will break the connection to section application, if you pur the values for USERID in section application in uppercase it should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2012 13:34:06 GMT</pubDate>
    <dc:creator>kji</dc:creator>
    <dc:date>2012-10-10T13:34:06Z</dc:date>
    <item>
      <title>Section access in personal edition?</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399686#M701489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm wondering if i'm doing anything wrong or if the personal edition is limited in security?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently I've a closer look to QVs security:&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, adm, adm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, user, user&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER,test,test&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;Works perfect: Can login with an admin and see all the options, login with a user ends in limited functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I add 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&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, adm, adm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, user, user&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER,test,test&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; USERID, NameCountry&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; user, Oceania&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; test, Nigeria&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's no longer possible to login with a user (failed to open document). Any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:12:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399686#M701489</guid>
      <dc:creator />
      <dc:date>2012-10-10T13:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Section access in personal edition?</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399687#M701490</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;Yes, this is one of the quirks in section access scripting. There must be a reduction field, uppercase in the name, that links the section access table that is hidden from the model with the section application area, so for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13498757670683441" jivemacro_uid="_13498757670683441"&gt;&lt;P&gt;SECTION ACCESS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Region is the reduction-link field here&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, USERID, PASSWORD, REGION&lt;/P&gt;&lt;P&gt;ADMIN, ADMIN, ADMIN&lt;/P&gt;&lt;P&gt;USER, USERN, USERN, NORTH&lt;/P&gt;&lt;P&gt;USER, USERS, USERS, SOUTH&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;DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;REGION, COUNTRY&lt;/P&gt;&lt;P&gt;NORTH, US&lt;/P&gt;&lt;P&gt;NORTH, UK&lt;/P&gt;&lt;P&gt;SOUTH, AR&lt;/P&gt;&lt;P&gt;SOUTH, CL&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously, as ADMIN you can see all the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:31:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399687#M701490</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-10-10T13:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Section access in personal edition?</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399688#M701491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;section access will make all values for USERID (and other "access" specific fields) uppercase, which will break the connection to section application, if you pur the values for USERID in section application in uppercase it should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:34:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399688#M701491</guid>
      <dc:creator>kji</dc:creator>
      <dc:date>2012-10-10T13:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Section access in personal edition?</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399689#M701492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works now as expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sadly the hierarchy is not passed by the security, for example:&lt;/P&gt;&lt;P&gt;World&lt;/P&gt;&lt;P&gt;- Europe&lt;/P&gt;&lt;P&gt;- Asia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section access for World will not pass the access bottom down (but honestly, didn't expected that...).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 14:31:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-in-personal-edition/m-p/399689#M701492</guid>
      <dc:creator />
      <dc:date>2012-10-10T14:31:01Z</dc:date>
    </item>
  </channel>
</rss>

