<?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: Button with password for access some hidden screen in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1698238#M592573</link>
    <description>&lt;P&gt;HI Sir&lt;/P&gt;&lt;P&gt;=Match(QVUser(),'PAUL','USER2') OR MixMatch(OSUser(),'DESKTOP-9837GT0\pauly','domain\user2')&lt;/P&gt;&lt;P&gt;I have try using above expression , paste at button show conditional. it work fine.&lt;/P&gt;&lt;P&gt;May i know how can i using below script for hide button ?&lt;/P&gt;&lt;P&gt;SECTION ACCESS;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ACCESS, NTNAME, SOURCE , SBU ,vSheetVisible_&lt;BR /&gt;USER, DESKTOP-9837GT0\pauly,PW,*,1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
    <pubDate>Fri, 01 May 2020 03:44:39 GMT</pubDate>
    <dc:creator>paulyeo11</dc:creator>
    <dc:date>2020-05-01T03:44:39Z</dc:date>
    <item>
      <title>Button with password for access some hidden screen</title>
      <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697545#M592569</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Goal : To hidden some sensitive screen only for GM to view.&lt;/P&gt;&lt;P&gt;My approach : I create a button when I click it will turn on certain screen. I make the button transparent so not easy for user to see it.&lt;/P&gt;&lt;P&gt;May I know if user accidently press on the button, can I add a one more control, that Password entry.&lt;/P&gt;&lt;P&gt;Hope some one can share with me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 03:12:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697545#M592569</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2020-04-29T03:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Button with password for access some hidden screen</title>
      <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697622#M592570</link>
      <description>&lt;P&gt;Hi, I think it will be better to apply section access with data reduction so users with access load a '1' in a field, and other users load '0'. Then you only need to set this field as show condition of the sheet and the button.&lt;/P&gt;&lt;P&gt;Also you can use OMIT to prevent access to sensitive data.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 09:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697622#M592570</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-29T09:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Button with password for access some hidden screen</title>
      <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697960#M592571</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;Thank you for your sharing.I assume you refer to below :-&lt;/P&gt;&lt;P&gt;(1)Load script expression&amp;nbsp; ( This i use for all staff and manager ).&lt;BR /&gt;&lt;BR /&gt;SET vSheetVisible = 1;&lt;/P&gt;&lt;P&gt;I create a page which i want to hiden by set page condition below :-&lt;BR /&gt;vSheetVisible=2&lt;/P&gt;&lt;P&gt;(2) Section access script , This is for me i set vSheetVision = 2&amp;nbsp; , all other user i set at 99.&amp;nbsp;&lt;/P&gt;&lt;P&gt;SECTION ACCESS;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ACCESS, NTNAME, SOURCE , SBU ,vSheetVisible&lt;BR /&gt;USER, DESKTOP-9837GT0\pauly,PW,*,2&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;SECTION APPLICATION;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;SOURCE, description, SBU ,vSheetVisible&lt;BR /&gt;SE, MOTION, ROY,1&lt;BR /&gt;PW, IPC, JOHN,1&lt;BR /&gt;PW, IPC, DAVID,1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;(3) This step i am blur&lt;/P&gt;&lt;P&gt;Button Set condition when trigger :-&lt;BR /&gt;Variable :- vSheetVisible&lt;BR /&gt;Value :-=If(vSheetVisible =491, 0,2)&lt;/P&gt;&lt;P&gt;Hope you can advise mee.&lt;/P&gt;&lt;P&gt;Paul Yeo&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 04:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697960#M592571</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2020-04-30T04:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Button with password for access some hidden screen</title>
      <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697991#M592572</link>
      <description>&lt;P&gt;Hi Paul, you don't really need a variable, the field value is all you need, I usually assign 0 to users that doesn't have access and 1 to users with access.&lt;/P&gt;&lt;P&gt;And the sheet show condition can be Max(&lt;SPAN&gt;vSheetVisible&lt;/SPAN&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;About the button I meaning that it can also have a conditional show (in layout tab of the button) so user without access also can't see the button. The condition will be the same as for the sheet.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Aditional security can be set using OMIT, so if in example you have a field margin or salary wich you only want some users to access it you can set it on section access to prevent access to that data. This is almost a need if users can create or edit objects.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 06:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1697991#M592572</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-30T06:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Button with password for access some hidden screen</title>
      <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1698238#M592573</link>
      <description>&lt;P&gt;HI Sir&lt;/P&gt;&lt;P&gt;=Match(QVUser(),'PAUL','USER2') OR MixMatch(OSUser(),'DESKTOP-9837GT0\pauly','domain\user2')&lt;/P&gt;&lt;P&gt;I have try using above expression , paste at button show conditional. it work fine.&lt;/P&gt;&lt;P&gt;May i know how can i using below script for hide button ?&lt;/P&gt;&lt;P&gt;SECTION ACCESS;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ACCESS, NTNAME, SOURCE , SBU ,vSheetVisible_&lt;BR /&gt;USER, DESKTOP-9837GT0\pauly,PW,*,1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 03:44:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1698238#M592573</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2020-05-01T03:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Button with password for access some hidden screen</title>
      <link>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1698669#M592574</link>
      <description>&lt;P&gt;Hi, you need to set initial data reduction on open and the expression can be something like:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=Match(QVUser(),'PAUL','USER2') OR vSheetVisible_=1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It will be better if the Qv User is also related with reduction field so you only need:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;vSheetVisible_=1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Or maybe: Max(vSheetVisible_)=1, so it can work after a reload, when reduction is not yet applied.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Remember to have a backup of the document before changing section access to prevent be locked&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 07:03:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-with-password-for-access-some-hidden-screen/m-p/1698669#M592574</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-05-04T07:03:26Z</dc:date>
    </item>
  </channel>
</rss>

