<?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 help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-access-help/m-p/1574099#M740380</link>
    <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have applied Qlik view section access as below. the password is 123&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data on each tab is not excluded as per the section access with&amp;nbsp;users given below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, USERID, PASSWORD, upper(GU) as GU, upper(OG) as OG&lt;/P&gt;&lt;P&gt;ADMIN, ADMIN, ADMIN&lt;/P&gt;&lt;P&gt;USER, USER1, U1, ICEG,RES&lt;/P&gt;&lt;P&gt;USER, USER2, U2, UNITED STATES,OTHER&lt;/P&gt;&lt;P&gt;USER, USER3, U3, ASEAN,PRD&lt;/P&gt;&lt;P&gt;USER, USER3, U3, ANZ,CMT&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can you help me to understand why it is not working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Savithri&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>savithri_n_s</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Section access help</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-help/m-p/1574099#M740380</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have applied Qlik view section access as below. the password is 123&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data on each tab is not excluded as per the section access with&amp;nbsp;users given below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, USERID, PASSWORD, upper(GU) as GU, upper(OG) as OG&lt;/P&gt;&lt;P&gt;ADMIN, ADMIN, ADMIN&lt;/P&gt;&lt;P&gt;USER, USER1, U1, ICEG,RES&lt;/P&gt;&lt;P&gt;USER, USER2, U2, UNITED STATES,OTHER&lt;/P&gt;&lt;P&gt;USER, USER3, U3, ASEAN,PRD&lt;/P&gt;&lt;P&gt;USER, USER3, U3, ANZ,CMT&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can you help me to understand why it is not working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Savithri&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-help/m-p/1574099#M740380</guid>
      <dc:creator>savithri_n_s</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Section access help</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-help/m-p/1574653#M740381</link>
      <description>First:&lt;BR /&gt;&lt;BR /&gt;Section Access must be in the front of your script, not at end. After "Section Access" came "Section Application". Makes Sense?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Second: You cant write commands inside Load * Inline like "Upper". In the same time, your DATA already in Caption.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Third: You can reduce one field per time. If you want reduce two, its necessary concat them, like: GU &amp;amp; '|' &amp;amp; OG as _GU_OG&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Script example:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SECTION Access;&lt;BR /&gt;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ACCESS, USERID, PASSWORD, _GU_OG&lt;BR /&gt;ADMIN, ADMIN, ADMIN, *&lt;BR /&gt;USER, USER1, U1, ICEG|RES&lt;BR /&gt;USER, USER2, U2, UNITED STATES|OTHER&lt;BR /&gt;USER, USER3, U3, ASEAN|PRD&lt;BR /&gt;USER, USER4, U4, ANZ|CMT&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Section Application;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;Load&lt;BR /&gt;Upper(OG) &amp;amp; '|' &amp;amp; Upper(GU) as _GU_OG, // Section Access&lt;BR /&gt;Upper(OG) as [OG_SA],&lt;BR /&gt;Upper(GU) as [GU_SA],&lt;BR /&gt;[Business Dimensions (Express Requisition)],&lt;BR /&gt;...</description>
      <pubDate>Mon, 29 Apr 2019 19:04:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-help/m-p/1574653#M740381</guid>
      <dc:creator>lfetensini</dc:creator>
      <dc:date>2019-04-29T19:04:23Z</dc:date>
    </item>
  </channel>
</rss>

