Microsoft BI tool Embed on Website using predifined filter - powerbi

I have a question, might be easy for you.
Foe ex: I have a report to show the errands related to user in powerBI. In website I want to embedd this report but want to show only errands which are related to the user without user selecting this. Any solution?

Related

rename page name in powerbi authoring experience for embed using javascript

I am trying to find javascript api to rename page title in embed view.
I referred this documentation but didnt see a rename page name option. https://github.com/microsoft/PowerBI-JavaScript/wiki/Page-Operations
if it is supported, can you please help with how we can modify it in embed view with api?
Currently Power BI Embedded don't have page rename API. However, it is on our roadmap.
You can add/vote for an idea here: https://ideas.powerbi.com/ideas/

Embedded power bi in Donnet nuke

This is not exactly a programming question but more of a design concern, after all my research i could not find anything, as do not understand much about DNN or any CMS architecture.
We need to embed power bi in DNN CMS website for the each of our website users(who are our customers), based on their individual data. The KPIs could vary for each customer in number and KPIs.
I know DNN store has a product for embedding in power bi, but can individual KPIS be deployed for each user. There would be some common visuals for each user and some user specific visuals.
All i am looking for is some guidance to understand if this is feasible and scalable. Any feedback and reference is highly welcome.
As I don't know the product I canot speak for it, but when I read the page that is linked I find
Authorization
Simply provide your username, password, and Client ID.
There is also a link titled "Ask a question" - I would try to get an answer there.
Finally: Why not download the trial version and test it?

Is there a way to pre-filter a powerBI report server side?

I have uploaded a report, and using the .net SDK I've embedded said report into my website. However we show private data for many organizations. If I edit the reports iframe url to filter the report by the users org id so they can only see data for their organization then that ends up being a URL you can edit in javascript on the client side so a use could put another id there and view some other organizations data.
Is there any way possible to filter the data a report shows before it is sent client side?
I know you can edit the report file it'self but if you have hundreds of organizations, you'd need 100 copies of the same report which is obviously a maintenance and upkeep nightmare.
I would use the "Row Level Security" (RLS) feature for this requirement. Basically you set up roles, assign users to them and assign DAX expressions to them to filter the data.
There's a good explanation of it here:
https://azure.microsoft.com/en-us/documentation/articles/power-bi-embedded-rls/
The most efficient design of RLS (from a coding and admin perspective) is if you can feed in a username variable and filter your data by that (as shown in that example).

Is there a way to figure out how often a SharePoint user clicked on a SiteCollection?

I'd like to know if there is a way to figure out how often a SharePoint (2013) user clicked on a SiteCollection or Web. Is there a specific service that is capable of the logging or is there a log in the database anyway? My idea is to display the result as a graph. For example:
(user a)-[40 clicks]->(SiteCollection X)<-[60 clicks]-(user b)
Read this for analytics in Sharepoint
https://technet.microsoft.com/en-us/library/jj219554.aspx
But, if this report is important to you I strongly recommend using something like google analytics (which is free of course) to track the data by your self.
You can create your own account, and send an event each time user enters your site or web.
I did some more research and found the "SharePoint audit log reports". They do almost exactly what I want. Information about how often items in a SiteCollection have been clicked is provided and reports are saved as exel sheets. Example

What is the best way to display a filtered List View in SharePoint?

We got a standard-webpart, which displays the document library using views. We can use these views using the SharePoint Designer to customize to our customers needs.
Now the customer wants to have filter/search - option that is used on the title of the documents.
What would be the best ways without writing custom code?
Can it even be done just using SharePoint-Designer and standard-webparts?
I was able to this in sharepoint 2007, and i believe this is also applicable in sharepoint 2010, check this site for more info http://sharethelearning.blogspot.com/2007/03/filtering-list-by-partial-match.html
this is by using data view web parts.