Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create an App in PowerBI AppSource marketplace similar to Salesforce Reports App

I want to build an PowerBI App similar to Salesforce Reports App for Power BI in the AppSource market place

Salesforce Report app List of Salesforce Reports

  1. It expects the user to provide Salesforce credentials
  2. It fetches all reports (tabular + summary) and lists on the right hand side
  3. The user selects a report and the data corresponding to the report is fetched from Salesforce using a REST API call and a Dataset is created for the Salesforce Report.

I need to build something similar and I don't find the relevant documents. 1. Where do I can view the source code for the above app? Is it open source? 2.Is there any documentation on how to develop similar apps?

The above App is quite different from other Apps in the AppSource marketplace since this is not a content pack nor a solution template as well.

like image 626
M.R Avatar asked Sep 11 '25 03:09

M.R


1 Answers

That app was developed by Microsoft years ago as a Content Pack, it is not open source and there is no documentation for it, beyond this "getting started" page:

https://learn.microsoft.com/en-us/power-bi/service-connect-to-salesforce

I would look at the Solution Template for Salesforce. This is a wizard that spins up an instance of a data extract + SQL db + Power BI model for you.

https://github.com/Microsoft/BusinessPlatformApps/tree/dev/Source/Apps/Microsoft/Released/Microsoft-SalesforceSalesManagement

The generated components are all "open source" in that you can edit them.

Microsoft's template engine that generates app instances is also "open source", which probably doesn't matter for your scenario. In case it does, you can find it here:

https://github.com/Microsoft/BusinessPlatformApps

like image 126
Mike Honey Avatar answered Sep 13 '25 18:09

Mike Honey