<?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 with Active Directory and Single Sign On in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448836#M1332967</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;Thanks for your response. As per you suggestion my script now looks like the following but it exhibitied the same behavior as before:&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, NTNAME , CompanySegment&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userabc, SEGMENT1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz, SEGMENT1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz, SEGMENT2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;Section Application;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;CompanySegment&lt;BR /&gt;SEGMENT1&lt;/P&gt;&lt;P&gt;SEGMENT2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;* Even though you said in your email that &lt;EM&gt;&lt;STRONG&gt;"If your data comes from a source that's not capitalized, just create a new field using the Upper function to capitalize it, and use that for your section access."&lt;/STRONG&gt;&lt;/EM&gt; but I read in &lt;STRONG&gt;Introduction_to_Section_Access_-_Rev_1-1&amp;nbsp; &lt;/STRONG&gt;that &lt;/P&gt;&lt;P align="left"&gt;&lt;EM&gt;**Note that all data loaded via an external data source must be loaded in upper case in the SECTION ACCESS statement. This does not apply to INLINE data which always will be treated as upper case.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Helvetica;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;So I did not change CompanySegment to COMPANYSEGMENT. Should I use something like &lt;STRONG&gt;LOAD CompanySegment AS COMPANYSEGMENT &lt;/STRONG&gt;before the Section Access script? All values in CompanySegment field however, are uppercase by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the binary files load happens in the tab after this hidden scripttab and I cannot change the order. Does that matter?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Oct 2012 17:00:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-10-24T17:00:48Z</dc:date>
    <item>
      <title>Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448834#M1332962</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;STRONG&gt;Background:&lt;/STRONG&gt; I'm&amp;nbsp; working on QV10 SR1.&lt;/P&gt;&lt;P&gt;The users of our QV application access the documents via Access Point through a browser, which is accessed via a URL. &lt;/P&gt;&lt;P&gt;Users are authenticated via Active Directory. Since Single Sign On is enabled, once the users log on to their Windows machine and type the URL for Access point, they see all the documents they have been given access to by adding their "domain\userID" to the document through QEMC.&lt;/P&gt;&lt;P&gt;When I connect to Access Point, it tells me I'm logged on as DOMAIN\user_abc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;I need to be able to do the following:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;There is a document in which I need to restrict data access for the users based on a column Company Segment.&lt;/P&gt;&lt;P&gt;Currently I'm restricting access to specific sheets/tabs in the document using the following expression in the &lt;STRONG&gt;Show Sheet --&amp;gt; Conditional &lt;/STRONG&gt;dialog box&lt;/P&gt;&lt;P&gt;=if((OSUser() = 'domain\user_abc' &lt;/P&gt;&lt;P&gt;OR OSUser() = 'domain\user_xyz'),1,0)&lt;/P&gt;&lt;P&gt;This works perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the sheets\tabs visible to user_abc I further need to restrict data access. I tried using Section access but I'm not sure how to connect the Active Directory ID to the USERID or NTNAME. I tried using the following variants of the Hidden Section Access Script but they did not work.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//Script 1&lt;/STRONG&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, NTNAME&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; user1, domain\user_abc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; user2, domain\user_xyz ];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;NTNAME, CompanySegment&amp;nbsp; &lt;/P&gt;&lt;P&gt;domain\user_abc, Segment1&lt;/P&gt;&lt;P&gt;domain\user_xyz, Segment2&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//Script 2 (tried OSUser() in the script based on a similar suggestion by Miguel Angel Baeyens in another thread)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Section Access;&lt;/EM&gt;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, OSuser()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; user1, domain\user_abc&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; user2, domain\user_xyz ];&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Section Application;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;OSUser(), CompanySegment&lt;/P&gt;&lt;P&gt;domain\user_abc, Segment1&lt;/P&gt;&lt;P&gt;domain\user_xyz, Segment2 ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neither of the scripts worked. It keeps asking me for USERID and Password repeatedly. &lt;/P&gt;&lt;P&gt;When I connect to Access Point, it tells me I'm logged on as DOMAIN\user_abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I doing wrong? How can I link the AD ID's to NTNAME. &lt;/P&gt;&lt;P&gt;I do not want to define username and password for each user as we have large number of users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AM &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448834#M1332962</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448835#M1332964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your first script looks on the right track. The only thing to bear in mind is that the column and volues need to be all capital letters, so try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Section Access;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, NTNAME, &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;COMPANYSEGMENT&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User, domain\user_abc, SEGMENT1&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User, domain\user_xyz, SEGMENT2 ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Section Application;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;CompanySegment &lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;SEGMENT1&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;SEGMENT&lt;/SPAN&gt;2];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Add whatever other data you need. If your data comes from a source that's not capitalized, just create a new field using the Upper function to capitalize it, and use that for your section access.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 15:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448835#M1332964</guid>
      <dc:creator>danielact</dc:creator>
      <dc:date>2012-10-24T15:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448836#M1332967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;Thanks for your response. As per you suggestion my script now looks like the following but it exhibitied the same behavior as before:&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, NTNAME , CompanySegment&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userabc, SEGMENT1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz, SEGMENT1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz, SEGMENT2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;Section Application;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;CompanySegment&lt;BR /&gt;SEGMENT1&lt;/P&gt;&lt;P&gt;SEGMENT2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;* Even though you said in your email that &lt;EM&gt;&lt;STRONG&gt;"If your data comes from a source that's not capitalized, just create a new field using the Upper function to capitalize it, and use that for your section access."&lt;/STRONG&gt;&lt;/EM&gt; but I read in &lt;STRONG&gt;Introduction_to_Section_Access_-_Rev_1-1&amp;nbsp; &lt;/STRONG&gt;that &lt;/P&gt;&lt;P align="left"&gt;&lt;EM&gt;**Note that all data loaded via an external data source must be loaded in upper case in the SECTION ACCESS statement. This does not apply to INLINE data which always will be treated as upper case.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Helvetica;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;So I did not change CompanySegment to COMPANYSEGMENT. Should I use something like &lt;STRONG&gt;LOAD CompanySegment AS COMPANYSEGMENT &lt;/STRONG&gt;before the Section Access script? All values in CompanySegment field however, are uppercase by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the binary files load happens in the tab after this hidden scripttab and I cannot change the order. Does that matter?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 17:00:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448836#M1332967</guid>
      <dc:creator />
      <dc:date>2012-10-24T17:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448837#M1332970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd just change them all to capital letters - it doesn't hurt to try,&lt;/P&gt;&lt;P&gt;Also, make sure you have the proper settings checked in the Document Properties.&lt;/P&gt;&lt;P&gt;Go to Settings &amp;gt; Document Properties and select the Opening tab&lt;/P&gt;&lt;P&gt;Make sure Initial Data Reduction Based on Section Access is checked. You want Strict Exclusion unchecked. &lt;/P&gt;&lt;P&gt;Run the script, then save and close. Reopen, and the section access should be working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 17:10:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448837#M1332970</guid>
      <dc:creator>danielact</dc:creator>
      <dc:date>2012-10-24T17:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448838#M1332973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changed everyting to All caps.&lt;/P&gt;&lt;P&gt;I had the data reduction and Strict Exclusion checked earlier.&lt;/P&gt;&lt;P&gt;But when I unchecked Strict Exclusion, the document opened but showed all of the data without reduction.&lt;/P&gt;&lt;P&gt;So far I was making changes and saving the document. When I reread your response and thought I should reload the document. But this gave an error&amp;nbsp;&amp;nbsp; Unknown statement Binary [\DataModel\DM1.qvw]. &lt;/P&gt;&lt;P&gt;So it does not like hidden script before the binary load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 17:30:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448838#M1332973</guid>
      <dc:creator />
      <dc:date>2012-10-24T17:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448839#M1332975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Binary load has to be the first line in the script. So, you can put it in your hidden script as the first line and then Section Access after that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 18:51:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448839#M1332975</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2012-10-24T18:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448840#M1332977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bill,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;I included the Binary load statement in the Hidden script and the script reload went fine. &lt;/P&gt;&lt;P&gt;I checked the Strict Exclusion check box back, the document loads but with enitre data set, not filtering on segment. &lt;/P&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, NTNAME , COMPANYSEGMENT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userabc, SEGMENT1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz, SEGMENT1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz, SEGMENT2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;Section Application;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;COMPANYSEGMENT&lt;/P&gt;&lt;P&gt;SEGMENT1&lt;/P&gt;&lt;P&gt;SEGMENT2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:21:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448840#M1332977</guid>
      <dc:creator />
      <dc:date>2012-10-24T19:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448841#M1332979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you exit the application then re-open it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:22:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448841#M1332979</guid>
      <dc:creator>danielact</dc:creator>
      <dc:date>2012-10-24T19:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448842#M1332981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have a sample, but you have to tie the two together, Your bottom load isn't really connect to the section access. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Segment1 needs to be tied to a FIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;COMPANYSEGMENT, FIELD&lt;/P&gt;&lt;P&gt;SEGMENT1, VALUE1&lt;/P&gt;&lt;P&gt;SEGMENT2, VALUE2&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:44:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448842#M1332981</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2012-10-24T19:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448843#M1332983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ideally this is what I would like to do. Map Access to AD username and then in Section Application filtering the user access based on what segment they belong to. abc sees data for seg 1, while xyz sees data for both seg 1 &amp;amp; 2. When I do that though, I still get a box to input Userid followed by password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, NTNAME &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userabc&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, DOMAIN\userxyz&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;Section Application;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;NTNAME , COMPANYSEGMENT&lt;/P&gt;&lt;P&gt;DOMAIN\userabc,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEGMENT1&lt;/P&gt;&lt;P&gt;DOMAIN\userxyz,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEGMENT1&lt;/P&gt;&lt;P&gt;DOMAIN\userxyz,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEGMENT2&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;AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:57:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448843#M1332983</guid>
      <dc:creator />
      <dc:date>2012-10-24T19:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448844#M1332985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have the right idea - just include the SEGMENT piece in the section access part.&lt;/P&gt;&lt;P&gt;Then, when you load the SEGMENT piece again the application part, it will filter it based on the section access.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 20:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448844#M1332985</guid>
      <dc:creator>danielact</dc:creator>
      <dc:date>2012-10-24T20:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access with Active Directory and Single Sign On</title>
      <link>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448845#M1332987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;I included COMPANYSEGMENT after NTNAME in the Scetion Access piece with Section Application section kept same as above, but it still asks for username.&lt;/P&gt;&lt;P&gt;I believe the problem that may be occurring is what my initial question was. DOMAIN\username is coming from Active Directory while what we are trying to put it as is NTNAME. There may not be a correlation between the two according to QlikView.&lt;/P&gt;&lt;P&gt;DOMAIN\username does not necessarily exist on the local NT. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 20:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-Access-with-Active-Directory-and-Single-Sign-On/m-p/448845#M1332987</guid>
      <dc:creator />
      <dc:date>2012-10-24T20:12:06Z</dc:date>
    </item>
  </channel>
</rss>

