<?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: User id should not be visible to other users  . in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2137723#M92476</link>
    <description>&lt;P&gt;Different options here I guess. One is HidePrefix to hide fields from field lists for users in frontend.&lt;/P&gt;
&lt;P&gt;However, if you want to apply section access I would use surgeon as the field to do data reduction on. As each surgeon should only be able to see its own data. Furthermore, you could also use in SA table the OMIT statement to make fields unvisible in the frontend for users.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Nov 2023 19:39:28 GMT</pubDate>
    <dc:creator>BartBrouwer</dc:creator>
    <dc:date>2023-11-14T19:39:28Z</dc:date>
    <item>
      <title>User id should not be visible to other users  .</title>
      <link>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2137668#M92472</link>
      <description>&lt;P&gt;Hi i have below code :&lt;/P&gt;
&lt;P&gt;SurgSup:&lt;BR /&gt;LOAD Distinct&lt;BR /&gt;SurgCardItemKey,&lt;BR /&gt;HAR,&lt;BR /&gt;UnknownPanelMarker,&lt;BR /&gt;Surgeon ,&lt;BR /&gt;OrProcedure,&lt;BR /&gt;all_proc_as_ordered,&lt;BR /&gt;ItemMfg,&lt;BR /&gt;ItemType,&lt;BR /&gt;SurgeryDate,&lt;BR /&gt;AmtUsed,&lt;BR /&gt;AmtWasted,&lt;BR /&gt;CostPerUnit,&lt;BR /&gt;AmtUsed * CostPerUnit as TotCost,&lt;BR /&gt;SurgLocation,&lt;BR /&gt;SurgFacility,&lt;BR /&gt;SurgInRoomDT, &lt;BR /&gt;SurgOutRoomDT,&lt;BR /&gt;Date#(Interval((SurgOutRoomDT) - (SurgInRoomDT),'m')) as ProcLength,&lt;BR /&gt;Interval((SurgOutRoomDT) - (SurgInRoomDT),'m') as zzzProcInterval,&lt;BR /&gt;SurgicalService&lt;BR /&gt;resident surgload;&lt;BR /&gt;drop tables surgload, surgtransform;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i am looking to hide the surgeon names from each other , surgeons should not be able to see the other surgeons name while they login into the system .&lt;/P&gt;
&lt;P&gt;How can we achieve&lt;/P&gt;
&lt;P&gt;that ,not sure how section access can be applied here&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:15:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2137668#M92472</guid>
      <dc:creator>ritumishra01</dc:creator>
      <dc:date>2024-11-15T21:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: User id should not be visible to other users  .</title>
      <link>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2137723#M92476</link>
      <description>&lt;P&gt;Different options here I guess. One is HidePrefix to hide fields from field lists for users in frontend.&lt;/P&gt;
&lt;P&gt;However, if you want to apply section access I would use surgeon as the field to do data reduction on. As each surgeon should only be able to see its own data. Furthermore, you could also use in SA table the OMIT statement to make fields unvisible in the frontend for users.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 19:39:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2137723#M92476</guid>
      <dc:creator>BartBrouwer</dc:creator>
      <dc:date>2023-11-14T19:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: User id should not be visible to other users  .</title>
      <link>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2138033#M92494</link>
      <description>&lt;P&gt;Hi , i am using below code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LIB CONNECT TO 'ClaritySQL';&lt;BR /&gt;UserMapping:&lt;BR /&gt;LOAD "USER_ID" as SurgLogOPID,&lt;BR /&gt;NAME,&lt;BR /&gt;"PROV_ID",&lt;BR /&gt;"EPIC_EMP_ID",&lt;BR /&gt;;&lt;BR /&gt;SQL SELECT "USER_ID",&lt;BR /&gt;NAME,&lt;BR /&gt;"PROV_ID",&lt;BR /&gt;"EPIC_EMP_ID"&lt;BR /&gt;FROM clarity.dbo."CLARITY_EMP"&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;SurgSup:&lt;BR /&gt;LOAD Distinct&lt;BR /&gt;SurgCardItemKey,&lt;BR /&gt;HAR,&lt;BR /&gt;UnknownPanelMarker,&lt;BR /&gt;Surgeon,&lt;BR /&gt;SurgLogOPID,&lt;BR /&gt;SurgeonID, //prov_id&lt;BR /&gt;OrProcedure,&lt;BR /&gt;all_proc_as_ordered,&lt;BR /&gt;ItemMfg,&lt;BR /&gt;ItemType,&lt;BR /&gt;SurgeryDate,&lt;BR /&gt;AmtUsed,&lt;BR /&gt;AmtWasted,&lt;BR /&gt;CostPerUnit,&lt;BR /&gt;AmtUsed * CostPerUnit as TotCost,&lt;BR /&gt;SurgLocation,&lt;BR /&gt;SurgFacility,&lt;BR /&gt;SurgInRoomDT, &lt;BR /&gt;SurgOutRoomDT,&lt;BR /&gt;Date#(Interval((SurgOutRoomDT) - (SurgInRoomDT),'m')) as ProcLength,&lt;BR /&gt;Interval((SurgOutRoomDT) - (SurgInRoomDT),'m') as zzzProcInterval,&lt;BR /&gt;SurgicalService&lt;BR /&gt;resident surgload;&lt;BR /&gt;//where ApplyMap('UserAccessMap' ,SurgLogOPID,0);&lt;BR /&gt;drop tables surgload, surgtransform;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Section_Access:&lt;BR /&gt;load&lt;BR /&gt;'USER' as Access ,&lt;BR /&gt;'DS\'&amp;amp;SurgLogOPID as USERID,&lt;BR /&gt;Surgeon as OMIT&lt;BR /&gt;Resident SurgSup;&lt;/P&gt;
&lt;P&gt;Section_Application;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;still i could see Surgeon data at front end&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 16:28:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-id-should-not-be-visible-to-other-users/m-p/2138033#M92494</guid>
      <dc:creator>ritumishra01</dc:creator>
      <dc:date>2023-11-15T16:28:43Z</dc:date>
    </item>
  </channel>
</rss>

