<?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 How to implement Section Access based on partial string match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342112#M706213</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could create a table that links your section access and Locations tables.&amp;nbsp; Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;SECTION Access;&lt;BR /&gt;&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;ACCESS, USERID, REGIONSECURITY&lt;BR /&gt;ADMIN, admin,&lt;BR /&gt;USER, user1, &lt;/CODE&gt;&lt;CODE class="jive-code"&gt;user1&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE class="jive-code"&gt;USER, user2, user2&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;SECTION Application; &lt;BR /&gt;&lt;BR /&gt;Locations:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;LocationKey, Location&lt;BR /&gt;S1, South 1&lt;BR /&gt;S2, South 2&lt;BR /&gt;NW1, North West 1&lt;BR /&gt;NW2, North West 2];&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LocationWildcard:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'user1' as REGIONSECURITY,&lt;/P&gt;&lt;P&gt;&amp;nbsp; LocationKey&lt;/P&gt;&lt;P&gt;RESIDENT Locations&lt;/P&gt;&lt;P&gt;WHERE LocationKey like 'S*'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Mar 2012 15:44:20 GMT</pubDate>
    <dc:creator>garystrader</dc:creator>
    <dc:date>2012-03-08T15:44:20Z</dc:date>
    <item>
      <title>How to implement Section Access based on partial string match</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342109#M706210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When defining field values in Section Access, is it possible to use partial string matches?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, one user should only be able to see regions beginning with 'S', while another user should only be able to see regions beginning with 'NW'.&amp;nbsp; I would like to write something like the following, but it does not work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, NTNAME, REGIONSECURITY&lt;/P&gt;&lt;P&gt;USER,user1,'R*'&lt;/P&gt;&lt;P&gt;USER,user2,'NW*']&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 03:33:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342109#M706210</guid>
      <dc:creator />
      <dc:date>2012-03-08T03:33:04Z</dc:date>
    </item>
    <item>
      <title>How to implement Section Access based on partial string match</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342110#M706211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; It will work make sure whether you have checked the option .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document Properties--&amp;gt;Opening--&amp;gt;Strict data reduction based on section access to be enabled with strict exclusion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Fieldname of the region should also be REGIONSECURITY i mean the field in application section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 05:09:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342110#M706211</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-03-08T05:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement Section Access based on partial string match</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342111#M706212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have just created a quick example and it does not seem to be working.&amp;nbsp; Please see my script:&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"&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;ACCESS, USERID, REGIONSECURITY&lt;/P&gt;&lt;P&gt;ADMIN, admin,&lt;/P&gt;&lt;P&gt;USER, user1, 'S*'&lt;/P&gt;&lt;P&gt;USER, user2, 'NW*'&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;Locations:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;REGIONSECURITY, Location&lt;/P&gt;&lt;P&gt;S1, South 1&lt;/P&gt;&lt;P&gt;S2, South 2&lt;/P&gt;&lt;P&gt;NW1, North West 1&lt;/P&gt;&lt;P&gt;NW2, North West 2];&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you open the app as "admin", you see everything.&amp;nbsp; If you try to open as "user1" or "user2", if gives the "Access denied to this QlikView document" message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 05:25:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342111#M706212</guid>
      <dc:creator />
      <dc:date>2012-03-08T05:25:48Z</dc:date>
    </item>
    <item>
      <title>How to implement Section Access based on partial string match</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342112#M706213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could create a table that links your section access and Locations tables.&amp;nbsp; Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;SECTION Access;&lt;BR /&gt;&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;ACCESS, USERID, REGIONSECURITY&lt;BR /&gt;ADMIN, admin,&lt;BR /&gt;USER, user1, &lt;/CODE&gt;&lt;CODE class="jive-code"&gt;user1&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE class="jive-code"&gt;USER, user2, user2&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;SECTION Application; &lt;BR /&gt;&lt;BR /&gt;Locations:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;LocationKey, Location&lt;BR /&gt;S1, South 1&lt;BR /&gt;S2, South 2&lt;BR /&gt;NW1, North West 1&lt;BR /&gt;NW2, North West 2];&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LocationWildcard:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'user1' as REGIONSECURITY,&lt;/P&gt;&lt;P&gt;&amp;nbsp; LocationKey&lt;/P&gt;&lt;P&gt;RESIDENT Locations&lt;/P&gt;&lt;P&gt;WHERE LocationKey like 'S*'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 15:44:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342112#M706213</guid>
      <dc:creator>garystrader</dc:creator>
      <dc:date>2012-03-08T15:44:20Z</dc:date>
    </item>
    <item>
      <title>How to implement Section Access based on partial string match</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342113#M706214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gary. That looks like a solution that could work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 23:09:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-Section-Access-based-on-partial-string-match/m-p/342113#M706214</guid>
      <dc:creator />
      <dc:date>2012-05-02T23:09:54Z</dc:date>
    </item>
  </channel>
</rss>

