<?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: Restrict data based on user role in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803713#M2652</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search in help page doesn't provide the link. &lt;/P&gt;&lt;P&gt;Google search on your site provided the correct&lt;A href="https://help.qlik.com/sense/en-us/online/Subsystems/Hub/Content/Scripting/Security/DynamicDataReduction.htm"&gt; link&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I tried this on the dashboard I created with following script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;section access;&lt;/P&gt;&lt;P&gt;LOAD * inline [&lt;/P&gt;&lt;P&gt;ACCESS, USERID,REDUCTION, OMIT&lt;/P&gt;&lt;P&gt;USER, domain\ADMIN,1,&lt;/P&gt;&lt;P&gt;USER, domain\lbabu,2,&lt;/P&gt;&lt;P&gt;USER, INTERNAL\SA_SCHEDULER,*,&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;section application;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;NUM AS REDUCTION;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Project,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Site,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Market,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Technology,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo() AS NUM&lt;/P&gt;&lt;P&gt;FROM [lib://Sample (domain_lbabu)/Sample.csv]&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This returns all records. Any pointers? &lt;/P&gt;&lt;P&gt;P.S: The demo script in the help works. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2015 15:16:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-03-11T15:16:45Z</dc:date>
    <item>
      <title>Restrict data based on user role</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803709#M2648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a qliksense dashboard and I need to restrict or filter the data based on user role. I understand that I can publish dashboard to streams but I don't want to maintain multiple dashboards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have sales dashboard with Region dimension containing East and West as possible values. I want user A to see only East region data and user B to see only West region data and user CEO should be able to see all regions. I don't want to create dashboards with different dataset. It would be great to have single dashboard and restrict the data using custom extensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible with extensions? Please show me some pointers to filter data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 15:58:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803709#M2648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-13T15:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict data based on user role</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803710#M2649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I haven't tried this my self but this is what the help says.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;Dynamic data reduction&lt;/H1&gt;&lt;P&gt;&lt;SPAN class="PrimaryGenericName"&gt;Qlik Sense&lt;/SPAN&gt; supports the dynamic data reduction feature, by which some of the data in an app can be hidden from the user, based on the section access login:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Fields (columns) can be hidden by using the system field OMIT.&lt;/LI&gt;&lt;LI&gt;Records (rows) can be hidden by linking the section access data with the real data: The selection of values to be shown/excluded is controlled by having one or more fields with common names in section access and section application. After user login, &lt;SPAN class="PrimaryGenericName"&gt;Qlik Sense&lt;/SPAN&gt; will attempt to copy the selections in fields in section access to any fields in section application with exactly the same field names (the field names must be written in UPPER CASE). After the selections have been made, &lt;SPAN class="PrimaryGenericName"&gt;Qlik Sense&lt;/SPAN&gt; will permanently hide all data excluded by these selections from the user.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/sense/en-us/online/#../Subsystems/WorkingWith/Content/Scripting/Security/Dynamic%20data%20reduction.htm" title="https://help.qlik.com/sense/en-us/online/#../Subsystems/WorkingWith/Content/Scripting/Security/Dynamic%20data%20reduction.htm"&gt;https://help.qlik.com/sense/en-us/online/#../Subsystems/WorkingWith/Content/Scripting/Security/Dynamic%20data%20reduction.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Feb 2015 20:31:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803710#M2649</guid>
      <dc:creator />
      <dc:date>2015-02-14T20:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict data based on user role</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803711#M2650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The link is broken can you provide updated link?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 12:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803711#M2650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-10T12:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict data based on user role</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803712#M2651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the Qlik Help at help.qlik.com.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 12:30:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803712#M2651</guid>
      <dc:creator />
      <dc:date>2015-03-10T12:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict data based on user role</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803713#M2652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search in help page doesn't provide the link. &lt;/P&gt;&lt;P&gt;Google search on your site provided the correct&lt;A href="https://help.qlik.com/sense/en-us/online/Subsystems/Hub/Content/Scripting/Security/DynamicDataReduction.htm"&gt; link&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I tried this on the dashboard I created with following script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;section access;&lt;/P&gt;&lt;P&gt;LOAD * inline [&lt;/P&gt;&lt;P&gt;ACCESS, USERID,REDUCTION, OMIT&lt;/P&gt;&lt;P&gt;USER, domain\ADMIN,1,&lt;/P&gt;&lt;P&gt;USER, domain\lbabu,2,&lt;/P&gt;&lt;P&gt;USER, INTERNAL\SA_SCHEDULER,*,&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;section application;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;NUM AS REDUCTION;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Project,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Site,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Market,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Technology,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo() AS NUM&lt;/P&gt;&lt;P&gt;FROM [lib://Sample (domain_lbabu)/Sample.csv]&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This returns all records. Any pointers? &lt;/P&gt;&lt;P&gt;P.S: The demo script in the help works. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:16:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803713#M2652</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-11T15:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict data based on user role</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803714#M2653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have similar requirement, so wondering whether you got any solution for this problem ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 May 2016 00:22:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Restrict-data-based-on-user-role/m-p/803714#M2653</guid>
      <dc:creator />
      <dc:date>2016-05-27T00:22:34Z</dc:date>
    </item>
  </channel>
</rss>

