<?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: Qlikview: Row level security implementation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636541#M446820</link>
    <description>&lt;P&gt;Are you hardcoding the data access for&amp;nbsp; 15 users&amp;nbsp; or taking that data access for that 15 users from some table?&amp;nbsp; Also what should be access of the remaining 85 users should they see everything&amp;nbsp; ?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Oct 2019 09:06:37 GMT</pubDate>
    <dc:creator>qliksus</dc:creator>
    <dc:date>2019-10-17T09:06:37Z</dc:date>
    <item>
      <title>Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636021#M446794</link>
      <description>&lt;P&gt;I have one Qlikview application in which i got request from client that &lt;SPAN&gt;certain data can only be available to certain users.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So i have used row level section access security.But i have one doubt regarding it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If there are 100 users are using that application and i want 15 users to have access of certain data only.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so for applying security for 10-15 users, i have to create hidden script for it. So is it necessary to write the code about the access of all the 100 users in that script?like 85 users have admin access and other 15 users have specific area of access.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there any other way where i can write about those 15 users only that can use certain data only? because&amp;nbsp;in future there are possibilities to increase the count of users. So every time&amp;nbsp;I need to change the code.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:13:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636021#M446794</guid>
      <dc:creator>VishrantiC</dc:creator>
      <dc:date>2024-11-16T02:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636541#M446820</link>
      <description>&lt;P&gt;Are you hardcoding the data access for&amp;nbsp; 15 users&amp;nbsp; or taking that data access for that 15 users from some table?&amp;nbsp; Also what should be access of the remaining 85 users should they see everything&amp;nbsp; ?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 09:06:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636541#M446820</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2019-10-17T09:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636567#M446827</link>
      <description>&lt;P&gt;Yes, i am hardcoding the data for 15 users and we can also take data for the same from table or excel.&lt;/P&gt;&lt;P&gt;And yes,other users can see everything.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 09:47:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636567#M446827</guid>
      <dc:creator>VishrantiC</dc:creator>
      <dc:date>2019-10-17T09:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636583#M446828</link>
      <description>&lt;P&gt;Lets assume you have table1 with all the users details (85+15)&amp;nbsp; and table2 with only the users who have restricted access . The code will be something like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Table2:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&amp;nbsp;&lt;BR /&gt;ACESSS ,USERID , PASSOWRD, NTNAME,DATA&lt;BR /&gt;ADMIN , * , * , USER1,DATA1&lt;BR /&gt;ADMIN , * , * , USER2,DATA2&lt;BR /&gt;.&lt;BR /&gt;ADMIN , * , * , UISER15,DATA3 ] ;&lt;/P&gt;&lt;P&gt;CONCATENATE&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; * INLINE [&lt;/P&gt;&lt;P&gt;ACESSS ,USERID , PASSOWRD, NTNAME,DATA&lt;/P&gt;&lt;P&gt;ADMIN , * , * , USER1,*&lt;BR /&gt;ADMIN , * , * , USER2,*&lt;BR /&gt;.&lt;BR /&gt;ADMIN , * , * , UISER100,*]&lt;/P&gt;&lt;P&gt;WHERE NOT EXISTS(NTNAME) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 10:14:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636583#M446828</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2019-10-17T10:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636587#M446831</link>
      <description>&lt;P&gt;Thank you for explanation of the code.&lt;/P&gt;&lt;P&gt;But can you please explain me how this code will work with Qlik application and give the output? As I am new in Qlik.&lt;/P&gt;&lt;P&gt;And one more Question: for applying security, Does it required to enter all the user details into Qlik code?I mean can't we add only those user's details who have restricted access?so except those users,all other users have full access.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 10:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636587#M446831</guid>
      <dc:creator>VishrantiC</dc:creator>
      <dc:date>2019-10-17T10:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636966#M446865</link>
      <description>&lt;P&gt;The code works like how Qlikview reacts when you make a selection&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SECTION ACESS ;&lt;/P&gt;&lt;P&gt;Security:&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;ACESSS, USERID,PASSWORD,NTNAME,REGION&lt;/P&gt;&lt;P&gt;USER,*,*,USER1,AMERICA&amp;nbsp;&amp;nbsp;&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;Realdata:&lt;/P&gt;&lt;P&gt;Load REGION, Zone , Sales from table1 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now ithe field&amp;nbsp;REGION mentioned in Seciton acess will connect to the Field&amp;nbsp; REGION in the table&amp;nbsp;Realdata and select only the region assigned for that particular user when he opens the dashboard&amp;nbsp; . thats how the row level security is assingned&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding your second question , you have put all the 100 users who to need acess .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 04:36:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1636966#M446865</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2019-10-18T04:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview: Row level security implementation</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1638588#M447029</link>
      <description>&lt;P&gt;Some additional links that should be helpful in your work:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/A-Primer-on-Section-Access/ba-p/1465766" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/A-Primer-on-Section-Access/ba-p/1465766&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Security.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Security.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I would think the OMIT feature of Section Access may potentially be of use here if the data is in particular fields.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2019 20:35:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Row-level-security-implementation/m-p/1638588#M447029</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-22T20:35:42Z</dc:date>
    </item>
  </channel>
</rss>

