<?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 :Access Denied in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163508#M21156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shwetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per the above comment password need not be used in the qlik sense section access;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the thumb rule in qlik sense section access is to convert ACCESS, USERID, SALES CATEGORY into upper case before using it in the section access..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and terminate section access with key word SECTION APPLICATION..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a working section access logic which I have pasted below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used QVD's you can remove that and load directly from the excel as I have done in the first step&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ACCESS",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; upper(opd) as USERID,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UPPER("Cost Centre") AS [COST CENTRE]&lt;BR /&gt;FROM [lib://QS_Cost_Center (opd_f29121)/Copy of Cost Centre Manager list_Test.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;STORE tmp into [lib://QS_Cost_Center_QVD (opd_f29121)/temp_test_300.qvd];&lt;/P&gt;&lt;P&gt;drop table tmp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;tmp_sec:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ACCESS",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "USERID",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "COST CENTRE"&lt;BR /&gt;FROM [lib://QS_Cost_Center_QVD (opd_f29121)/temp_test_300.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;ACCESS, USERID,COST CENTRE&lt;BR /&gt;USER, OPD\F29121,*&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;star is *;&lt;BR /&gt;section access;&lt;BR /&gt;Load * Resident tmp_sec;&lt;/P&gt;&lt;P&gt;section Application;&lt;/P&gt;&lt;P&gt;drop table tmp_sec;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jun 2016 14:42:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-21T14:42:06Z</dc:date>
    <item>
      <title>Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163506#M21154</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;I am working on Section Access in Qlik Sense for the first time but everytime I am getting Access is denied.&lt;/P&gt;&lt;P&gt;-Even admin is getting the same.&lt;/P&gt;&lt;P&gt;-App is published in Everyone stream.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have uploaded excel sheets for both Section Access and Section Application , following is the code for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SECTION ACCESS;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper([ACCESS]) as ACCESS, // Took&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper([USERID])as USERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper ([PASSWORD])as PASSWORD,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UPPER([CATEGORY]) as Sales.Category;&lt;/P&gt;&lt;P&gt; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ACCESS],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "USERID",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "PASSWORD",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATEGORY&lt;/P&gt;&lt;P&gt;FROM [lib://Folder/Section Access.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Section_Access);&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;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper(Category) as Sales.Category,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product&lt;/P&gt;&lt;P&gt;FROM [lib://Folder/File.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Purchase);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest where I am making mistake.&lt;/P&gt;&lt;P&gt;Any Help will be appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163506#M21154</guid>
      <dc:creator>shwetagupta</dc:creator>
      <dc:date>2016-06-21T11:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163507#M21155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please note that Qlik Sense does NOT use the password column, so I suggest you remove that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without knowing the username of the person trying to login and the content of your Section Access.xlsx it is kinda hard to tell you why someone does not have access. My educated guess is "because the username is not in the section access table".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163507#M21155</guid>
      <dc:creator>oknotsen</dc:creator>
      <dc:date>2016-06-21T11:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163508#M21156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shwetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per the above comment password need not be used in the qlik sense section access;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the thumb rule in qlik sense section access is to convert ACCESS, USERID, SALES CATEGORY into upper case before using it in the section access..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and terminate section access with key word SECTION APPLICATION..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a working section access logic which I have pasted below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used QVD's you can remove that and load directly from the excel as I have done in the first step&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ACCESS",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; upper(opd) as USERID,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UPPER("Cost Centre") AS [COST CENTRE]&lt;BR /&gt;FROM [lib://QS_Cost_Center (opd_f29121)/Copy of Cost Centre Manager list_Test.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;STORE tmp into [lib://QS_Cost_Center_QVD (opd_f29121)/temp_test_300.qvd];&lt;/P&gt;&lt;P&gt;drop table tmp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;tmp_sec:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ACCESS",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "USERID",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "COST CENTRE"&lt;BR /&gt;FROM [lib://QS_Cost_Center_QVD (opd_f29121)/temp_test_300.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;ACCESS, USERID,COST CENTRE&lt;BR /&gt;USER, OPD\F29121,*&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;star is *;&lt;BR /&gt;section access;&lt;BR /&gt;Load * Resident tmp_sec;&lt;/P&gt;&lt;P&gt;section Application;&lt;/P&gt;&lt;P&gt;drop table tmp_sec;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 14:42:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163508#M21156</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-21T14:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163509#M21157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandrashekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to Qlik Sense, followed the Qlikview examples to implement this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having few doubts :&lt;/P&gt;&lt;P&gt;1. As you have mentioned "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;convert ACCESS, USERID, SALES CATEGORY into upper case before using it in the section access". Did you mean by the column headers or the content. As per my understanding it should be content of the corresponding field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;- and 'ÚPPER' works in capitalising content under the fields (Correct ??) &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Which I have already done &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;-but my field name all through the app is Sale.Category so please suggest should I make it in 'uppercase' everywhere&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;2. &lt;SPAN style="font-size: 13.3333px;"&gt;Can you please elaborate how to &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;terminate section access with key word SECTION APPLICATION&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;So If I ll go by my code&amp;nbsp; following changes will help me to get rid off from the error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SECTION ACCESS;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper([ACCESS]) as ACCESS,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper([USERID])as USERID,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper ([PASSWORD])as PASSWORD,&amp;nbsp; // &lt;STRONG&gt;Change 1&lt;/STRONG&gt;. &lt;STRONG&gt;Remove Password&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UPPER([CATEGORY]) as Sales.Category;&amp;nbsp; // &lt;STRONG&gt;Change 2&lt;/STRONG&gt;: SALES.CATEGORY &lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;UPPERCASE&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ACCESS],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "USERID",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "PASSWORD",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATEGORY&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM [lib://Folder/Section Access.xlsx]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Section_Access);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Section Application; //&lt;STRONG&gt;SECTION APPLICATION&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper(Category) as Sales.Category,&amp;nbsp;&amp;nbsp; // &lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Change 3&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;: SALES.CATEGORY in &lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;UPPERCASE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product // &lt;STRONG&gt;In UPPERCASE&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM [lib://Folder/File.xlsx]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Purchase);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Any other suggested changes,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Anyways I ll surely try above mentioned&amp;nbsp; code but it will be great help if you will help me in clearing above doubts &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 17:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163509#M21157</guid>
      <dc:creator>shwetagupta</dc:creator>
      <dc:date>2016-06-21T17:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163510#M21158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt; ok I will clear your doubts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Convert the content and the headings used in the section access to upper case. Since you are loading the section application with sales category this will connect to your factual data so the other table which has the sales category also need to be in upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. once the section application statement is encountered the section access logic gets completed... whatever you are loading below section application is just like any other table load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can provide sample data I will write the logic and test in a sample app and send it across... also please be sure of how you are populating the USERID .. mine is OPD\F29121&amp;nbsp;&amp;nbsp;&amp;nbsp; OPD is the domain name...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163510#M21158</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-22T08:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163511#M21159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure your userid is prefixed with userdirectory as well, this should be in your section access spreadsheet&lt;/P&gt;&lt;P&gt;so userid value should be like "SALES\USER001"&lt;/P&gt;&lt;P&gt;Also make sure you have admin user in the spreadsheet&lt;/P&gt;&lt;P&gt;values will be as below&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ACCESS&amp;nbsp; = ADMIN&lt;/P&gt;&lt;P&gt;USERID = SALES\ADMINUSER&lt;/P&gt;&lt;P&gt;CATEGORY=*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SECTION ACCESS;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper([ACCESS]) as ACCESS, // Took&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper([USERID])as USERID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UPPER([CATEGORY]) as CATEGORY;&lt;/P&gt;&lt;P&gt; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ACCESS],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "USERID",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "PASSWORD",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATEGORY&lt;/P&gt;&lt;P&gt;FROM [lib://Folder/Section Access.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Section_Access);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:28:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163511#M21159</guid>
      <dc:creator>sujith1011</dc:creator>
      <dc:date>2016-06-22T16:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163512#M21160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandrashekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am now out of Access is denied problem. Thanks for suggestions.&lt;/P&gt;&lt;P&gt;Now I am having a new problem in the same case mentioned above :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever I am applying section access every user is getting reduced data but corresponding to all three mentioned category.&lt;/P&gt;&lt;P&gt;If I am not wrong with the logic , whatever I will add to the category my data will get reduced corresponding to CAT1, CAT2, CAT3&amp;nbsp; for USER1, USER2 and USER 3 respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e USER 2 and USER3 will not be able to see CAT1. (Right ?) but this is not happening, Following is my new code and the excel sheet format I am using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;now my new script looks like this&lt;/STRONG&gt; :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SECTION ACCESS;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTNAME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UPPER([Category]) as [SALE.CATEGORY];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NTNAME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Category&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM [lib://Haldirams (uic_shwetag)/Section Access.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Section_Access);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Section Application;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Upper(Category) as [SALE.CATEGORY]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM [lib://Haldirams (uic_shwetag)/haldiram K R ENT - ZRP.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sale);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and my excel sheet for section access is this :&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ACCESS&lt;/TD&gt;&lt;TD&gt;NTNAME&lt;/TD&gt;&lt;TD&gt;Category&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USER&lt;/TD&gt;&lt;TD&gt;DOMAIN\USER1&lt;/TD&gt;&lt;TD&gt;CAT1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USER&lt;/TD&gt;&lt;TD&gt;&lt;TABLE style="font-size: 13.3333px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;DOMAIN\USER2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;TD&gt;CAT2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USER&lt;/TD&gt;&lt;TD&gt;&lt;TABLE style="font-size: 13.3333px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;DOMAIN\USER3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;TD&gt;CAT3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ADMIN&lt;/TD&gt;&lt;TD&gt;DOMAIN\ADMINISTRATOR&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need Suggestion again&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope discussing this into the same thread is fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:13:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163512#M21160</guid>
      <dc:creator>shwetagupta</dc:creator>
      <dc:date>2016-06-24T10:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163513#M21161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shwetha..try changing Category in your excel to &lt;EM&gt;[SALE.CATEGORY]&lt;/EM&gt; and change wherever you are using that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and try the logic... or you can send me over your sample qvf and sample excel I will write test and give you the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:24:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163513#M21161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-24T10:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163514#M21162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chandrasheker,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am renaming this &lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; Upper(Category) as [SALE.CATEGORY]&lt;/EM&gt; in my code already(as mentioned above), wont it solve the purpose. &lt;/P&gt;&lt;P&gt;I dont think there is any need to make change in EXCEL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;secondly I have already changed the fields wherever I was using Sales.Category earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry but due to some limitations I am unable to share qvf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163514#M21162</guid>
      <dc:creator>shwetagupta</dc:creator>
      <dc:date>2016-06-24T10:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163515#M21163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ADMIN DOMAIN\ADMINISTRATOR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't put "*" for Category put Space&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 13:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163515#M21163</guid>
      <dc:creator>sujith1011</dc:creator>
      <dc:date>2016-06-24T13:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163516#M21164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not working. If I am putting space, it is giving me all the category corresponding to all the user.&lt;/P&gt;&lt;P&gt;Problems for me are : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Administrator and all users can also see only those three category which are used for section access.&lt;/P&gt;&lt;P&gt;2. User which are allocated to particular Category can also see all the three category instead of their allocated Category corresponding to Section Access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2016 05:10:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163516#M21164</guid>
      <dc:creator>shwetagupta</dc:creator>
      <dc:date>2016-06-27T05:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163517#M21165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shweta,&lt;/P&gt;&lt;P&gt;Please provide some sample data from both , section_access spreadsheet as well as the data used for section_application&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2016 18:45:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163517#M21165</guid>
      <dc:creator>sujith1011</dc:creator>
      <dc:date>2016-06-27T18:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163518#M21166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Please confirm one thing, If I ll name the user with domain then do I need to link it with My Active directory or will it read/recognize user through domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I was exploring what mistake I am making while working then I got to know my username are not working well though reduction field is working fine on&amp;nbsp; data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am unable to do is to restrict the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2016 05:49:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163518#M21166</guid>
      <dc:creator>shwetagupta</dc:creator>
      <dc:date>2016-06-30T05:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Section access :Access Denied</title>
      <link>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163519#M21167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; r&lt;/P&gt;&lt;P&gt;I have placed sample screenshot of users, so data in spreadsheet should be like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ACCESS, USERID, CATEGORY&lt;/P&gt;&lt;P&gt;USER, MASTER\PERFORMANCE4 ,CATEGORY1&lt;/P&gt;&lt;P&gt;USER, MASTER\PERFORMANCE43, CATEGORY2&lt;/P&gt;&lt;P&gt;ADMIN, MASTER\ADMINUSER1, *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADMIN, MASTER\ADMINUSER2\&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Admin user "ADMINUSER1" will only be able to see CATEGORY1 or CATEGORY2&lt;/P&gt;&lt;P&gt;whereas "ADMINUSER2" should be able to see all DATA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2016 16:18:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-access-Access-Denied/m-p/1163519#M21167</guid>
      <dc:creator>sujith1011</dc:creator>
      <dc:date>2016-06-30T16:18:11Z</dc:date>
    </item>
  </channel>
</rss>

