<?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: Section Access in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2142843#M92983</link>
    <description>&lt;P&gt;Hi , Thanks for your response , i am looking out for something where surgeons who logs in to app should not be able to see other surgeon names ,they should be able to see only their names.&lt;/P&gt;</description>
    <pubDate>Thu, 30 Nov 2023 11:52:17 GMT</pubDate>
    <dc:creator>ritumishra01</dc:creator>
    <dc:date>2023-11-30T11:52:17Z</dc:date>
    <item>
      <title>Section Access</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2138374#M92515</link>
      <description>&lt;P&gt;UserData:&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 AS 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;Section Access;&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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Section Application;&lt;BR /&gt;exit script;&lt;/P&gt;
&lt;P&gt;Can anyone tell wht is the error in code as i am still seeing Surgeon values. its not working as expected .&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:15:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2138374#M92515</guid>
      <dc:creator>ritumishra01</dc:creator>
      <dc:date>2024-11-15T21:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2141927#M92893</link>
      <description>&lt;P&gt;Kind of work as expected , because there nothing to be filter.&lt;BR /&gt;&lt;BR /&gt;in order to reduce the data an proper way you need to have a field on the table where Qlik can&amp;nbsp; connect between your session access table and data model , so let's&amp;nbsp; just say add a new field and make&amp;nbsp;&lt;SPAN&gt;SurgLogOPID AS&amp;nbsp;&amp;nbsp;USERID it will be reducing&amp;nbsp;the data base by ID and will probably will Omit the data &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 11:17:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2141927#M92893</guid>
      <dc:creator>TcnCunha_M</dc:creator>
      <dc:date>2023-11-28T11:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2141951#M92894</link>
      <description>&lt;P&gt;under the field OMIT the value has to be SURGEON&lt;BR /&gt;you want not to see the field SURGEON at all in the app? or you want to filter in some values of the SURGEON column?&lt;BR /&gt;currently you are putting the values of the SURGEON column under OMIT&lt;BR /&gt;you need to put (I assume) 'SURGEON' as OMIT&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 12:42:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2141951#M92894</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2023-11-28T12:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2142843#M92983</link>
      <description>&lt;P&gt;Hi , Thanks for your response , i am looking out for something where surgeons who logs in to app should not be able to see other surgeon names ,they should be able to see only their names.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 11:52:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2142843#M92983</guid>
      <dc:creator>ritumishra01</dc:creator>
      <dc:date>2023-11-30T11:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2142862#M92985</link>
      <description>&lt;P&gt;IN that case you don't need OMIT, OMIT will hide the field , Session access if work correctly should not allow you to see other data with is not assign to you&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 12:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access/m-p/2142862#M92985</guid>
      <dc:creator>TcnCunha_M</dc:creator>
      <dc:date>2023-11-30T12:51:54Z</dc:date>
    </item>
  </channel>
</rss>

