<?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 QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-access/m-p/48471#M769129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check document property &amp;gt; Opening &amp;gt; Initial Data Reduction Based on Section Access &amp;gt; Strict Exclusion must tick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2018 12:43:42 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2018-06-19T12:43:42Z</dc:date>
    <item>
      <title>Section access</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access/m-p/48470#M769128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the below script User DF should have access only for &lt;SPAN style="font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 13.3333px;"&gt;DOMESTIC_FOREIGN but it will show for all other flight type.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 13.3333px;"&gt;Can you please help me to understand section access in details with the example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="language-markup" data-code-index="1" style="font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: inherit;"&gt;Section Access;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp; ACCESS, USERID, PASSWORD, FLIGHTTYPE&lt;BR /&gt;&amp;nbsp; ADMIN, ADMIN, ADMIN123, *&lt;BR /&gt;&amp;nbsp; USER, DF, DF123, DOMESTIC_FOREIGN&lt;BR /&gt;&amp;nbsp; USER, DU, DU123, DOMESTIC_US&lt;BR /&gt;&amp;nbsp; USER, IF, IF123, INTERNATIONAL_FOREIGN&lt;BR /&gt;];&lt;BR /&gt;Section Application;&lt;BR /&gt;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp; Flight Type, FLIGHTTYPE&lt;BR /&gt;&amp;nbsp; "Domestic, Foreign Carriers", DOMESTIC_FOREIGN&lt;BR /&gt;&amp;nbsp; "Domestic, US Carriers Only", DOMESTIC_US&lt;BR /&gt;&amp;nbsp; "International, Foreign Carriers", INTERNATIONAL_FOREIGN&lt;BR /&gt;&amp;nbsp; "International, US Carriers Only", INTERNATIONAL_US&lt;BR /&gt;];&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gowtham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access/m-p/48470#M769128</guid>
      <dc:creator>Gowtham174</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Section access</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access/m-p/48471#M769129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check document property &amp;gt; Opening &amp;gt; Initial Data Reduction Based on Section Access &amp;gt; Strict Exclusion must tick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2018 12:43:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access/m-p/48471#M769129</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-06-19T12:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Section access</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access/m-p/48472#M769130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove the quotes from the inline table load. With the quotes like that, FLIGHTTYPE is not being populated so the SA is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="language-markup" data-code-index="1" style="font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: inherit;"&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp; Flight Type, FLIGHTTYPE&lt;BR /&gt;&amp;nbsp; "Domestic, Foreign Carriers", DOMESTIC_FOREIGN&lt;BR /&gt;&amp;nbsp; "Domestic, US Carriers Only", DOMESTIC_US&lt;BR /&gt;&amp;nbsp; "International, Foreign Carriers", INTERNATIONAL_FOREIGN&lt;BR /&gt;&amp;nbsp; "International, US Carriers Only", INTERNATIONAL_US&lt;BR /&gt;];&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2018 13:00:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access/m-p/48472#M769130</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-06-19T13:00:27Z</dc:date>
    </item>
  </channel>
</rss>

