<?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: Hiding the Expression based on the user login through session access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559415#M598953</link>
    <description>&lt;P&gt;well but thats probably because you are checking and for you the flag is 1&lt;/P&gt;&lt;P&gt;Change the flag to 0 on your Name in the inline table, hope its clear&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2019 09:15:57 GMT</pubDate>
    <dc:creator>anushree1</dc:creator>
    <dc:date>2019-03-21T09:15:57Z</dc:date>
    <item>
      <title>Hiding the Expression based on the user login through session access</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559345#M598948</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Is it possible to hide the expression in the chart through session access.&lt;/P&gt;&lt;P&gt;EX: lets say I have the below pivot table with 2 dimension with 3 measures.&lt;/P&gt;&lt;P&gt;I have a user called David &amp;amp; Nancy. My requirement is when David logins he has to see product, Sub type Sales &amp;amp; Cost.&lt;/P&gt;&lt;P&gt;But when Nancy logins she has to see all the columns.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;product&lt;/TD&gt;&lt;TD&gt;Sub type&lt;/TD&gt;&lt;TD&gt;sales&lt;/TD&gt;&lt;TD&gt;cost&lt;/TD&gt;&lt;TD&gt;margin&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;AA&lt;/TD&gt;&lt;TD&gt;1500&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;BB&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;CC&lt;/TD&gt;&lt;TD&gt;680&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;TD&gt;170&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohan.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:12:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559345#M598948</guid>
      <dc:creator>mohanrajsubrama</dc:creator>
      <dc:date>2024-11-16T21:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the Expression based on the user login through session access</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559346#M598949</link>
      <description>&lt;P&gt;You can try by creating an inline table with the user id and a flag for instance:&lt;/P&gt;&lt;P&gt;NAME&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FLAG&lt;/P&gt;&lt;P&gt;A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;B&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;&lt;P&gt;C&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above table must contain al the userIDs and mark those Ids for whom the expression must be visible as 1&lt;/P&gt;&lt;P&gt;in the conditional expression write if (only({&amp;lt;Name={'$(vID)'}&amp;gt;})FLAG)=1,1,0)&lt;/P&gt;&lt;P&gt;vID should be a variable declared as =OSUSER()&lt;/P&gt;&lt;P&gt;Please take care of the Case OSUSER and Names is the Inline table must be of same case&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 06:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559346#M598949</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2019-03-21T06:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the Expression based on the user login through session access</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559373#M598950</link>
      <description>&lt;P&gt;Have y tried using OMIT in the section access&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.qliktips.com/2011/04/blocking-user-access-to-field-using.html" target="_blank"&gt;https://www.qliktips.com/2011/04/blocking-user-access-to-field-using.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Documents/Introduction-to-Section-Access/ta-p/1478878" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Documents/Introduction-to-Section-Access/ta-p/1478878&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 07:35:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559373#M598950</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-03-21T07:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the Expression based on the user login through session access</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559412#M598951</link>
      <description>Thanks for your help.&lt;BR /&gt;I tried with the above approach just with 2 users .But the problem is when I changed the flag to 1 to 0 ,the above expression is not handling it.&lt;BR /&gt;I mean initially if the flag is 1 I am able to see the column. After changing it to 0 ,I am still seeing the column.</description>
      <pubDate>Thu, 21 Mar 2019 09:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559412#M598951</guid>
      <dc:creator>mohanrajsubrama</dc:creator>
      <dc:date>2019-03-21T09:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the Expression based on the user login through session access</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559413#M598952</link>
      <description>Hi ,&lt;BR /&gt;This method I tried before Pradosh..But this looks like omitting the field rather the whole expression.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance,&lt;BR /&gt;Mohan</description>
      <pubDate>Thu, 21 Mar 2019 09:12:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559413#M598952</guid>
      <dc:creator>mohanrajsubrama</dc:creator>
      <dc:date>2019-03-21T09:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding the Expression based on the user login through session access</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559415#M598953</link>
      <description>&lt;P&gt;well but thats probably because you are checking and for you the flag is 1&lt;/P&gt;&lt;P&gt;Change the flag to 0 on your Name in the inline table, hope its clear&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 09:15:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-the-Expression-based-on-the-user-login-through-session/m-p/1559415#M598953</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2019-03-21T09:15:57Z</dc:date>
    </item>
  </channel>
</rss>

