<?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>Rinkesh Tracker</title>
    <link>https://community.fabric.microsoft.com/t5/s/yrjkf47658/tracker</link>
    <description>Rinkesh Tracker</description>
    <pubDate>Tue, 15 Sep 2026 06:44:15 GMT</pubDate>
    <dc:date>2026-09-15T06:44:15Z</dc:date>
    <item>
      <title>Re: How do i use USERNAME() dax function in my store procedure as a parameter in power bi query ?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/254781#M113423</link>
      <description>&lt;P&gt;Hello Eric,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response but i dont want to restrict users to see their only own data. I want to display the records for all users who have same business unit in CRM . The username will be used only for getting the BU from systemuser table in CRM.&lt;/P&gt;&lt;P&gt;please find the below sql query so that requirment can be explained better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;declare @domainname varchar(50)&lt;BR /&gt;set @domainname ='rinkesh.rathor@xxxxxx.com'&lt;BR /&gt;select * from lead L&lt;BR /&gt;inner join systemuser S on S.id = L.ownerid&lt;BR /&gt;inner join businessunit B on B.id = S.businessunitid&lt;BR /&gt;where L.owningbusinessunit = (select businessunitid from systemuser where domainname=@domainname)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rinkesh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 12:44:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/254781#M113423</guid>
      <dc:creator>Rinkesh</dc:creator>
      <dc:date>2017-09-19T12:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use USERNAME() dax function in my store procedure as a parameter in power bi query ?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/253697#M112890</link>
      <description>&lt;P&gt;Hi Sunkari,&lt;BR /&gt;&lt;BR /&gt;Thanks for the suggestion.&lt;BR /&gt;&lt;BR /&gt;I have been already used RLS . As per my understanding, In RLS we can use USERNAME() function which returns logged in user name/email.&lt;BR /&gt;My challenge is that I want to pass this returned username or email in my SP parameter.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2017 07:10:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/253697#M112890</guid>
      <dc:creator>Rinkesh</dc:creator>
      <dc:date>2017-09-18T07:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use USERNAME() dax function in my store procedure as a parameter in power bi query ?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/253668#M112876</link>
      <description>&lt;P&gt;Is there any workaround ?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2017 06:36:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/253668#M112876</guid>
      <dc:creator>Rinkesh</dc:creator>
      <dc:date>2017-09-18T06:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use USERNAME() dax function in my store procedure as a parameter in power bi query ?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/253590#M112834</link>
      <description>&lt;P&gt;Can anyone help me over here ?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2017 04:52:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/253590#M112834</guid>
      <dc:creator>Rinkesh</dc:creator>
      <dc:date>2017-09-18T04:52:42Z</dc:date>
    </item>
    <item>
      <title>How do i use USERNAME() dax function in my store procedure as a parameter in power bi query ?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/251879#M111930</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a store proceudre which has a parameter &lt;SPAN&gt;domainname&lt;/SPAN&gt;. currently i am using hard coded value to get the report and its works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i want to pass loggedin user email id in power bi online as a parameter. ishort SP should be looked like as below example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example : &amp;nbsp;Exec SPLead @domainname ='rinkesh.rxxxx@XXXXXXs.com&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anybody help me how do i achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rinkesh Rathore&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 10:55:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-i-use-USERNAME-dax-function-in-my-store-procedure-as-a/m-p/251879#M111930</guid>
      <dc:creator>Rinkesh</dc:creator>
      <dc:date>2017-09-14T10:55:48Z</dc:date>
    </item>
  </channel>
</rss>

