SlideShare ist ein Scribd-Unternehmen logo
1 von 36
Downloaden Sie, um offline zu lesen
TUGA IT 2016
LISBON, PORTUGAL
THANK YOU TO OUR SPONSORS
THANK YOU TO OUR TEAM
ANDRÉ BATISTA ANDRÉ MELANCIA ANDRÉ VALA ANTÓNIO LOURENÇO BRUNO LOPES
CLÁUDIO SILVA
RUI BASTOS
NIKO NEUGEBAUER
RUI REISRICARDO CABRAL
NUNO CANCELO PAULO MATOS PEDRO SIMÕES
SANDRA MORGADO SANDRO PEREIRA
Agenda
09:00 - 10:00 - Jorge Camões 1
10:00 - 10:45 - Jorge Camões 2
10:45 - 11:00 - Coffee-Break 1
11:00 - 12:00 - Jorge Camões 2
12:00 - 13:00 - Rui Romano
13:00 - 14:00 - Lunch
14:00 - 15:15 - Wolfgang
15:25 - 15:45 - Sponsor Session
15:45 - 16:00 - Coffee-break 2
16:00 - 17:10 – Gerhard
17:10 - 17:30 - Q & A
Power BI
{for developers}
Rui Romano
Rui.Romano@devscope.net
https://ruiromanoblog.wordpress.com
• Industry-leading SaaS service
• Data Analysis & Exploration
• Raw Data => Useful Insights (in minutes)
• Out of the box Connectors to SaaS
Solutions
• Extension to current BI investments (SSAS,
SAP)
Power BI?
Connecting any user, in any business, anywhere, with their data
9
Feature
Push data
Integration
Real-
time
integrate
embed
extend
Power BI
Platform
Develop exactly what your organization needs
Visuals
</>
Automate
Feature
Open APIs for integration
 Programmatically access Power BI
resources (datasets, tables)
 Use the REST API to push data
directly from your application into
Power BI
 Follow the Standards
 REST + JSON + OAUTH
 Cross Platform
Power BI SaaS Service
Power BI User Account
Your Service or Application
Push Data Component
Push Content Component
Datasets Reports Dashboards
Power BI
REST APIs
</>
integrate
Feature
Sample – List DataSets
GET
https://api.powerbi.com/v1.0/myorg/datasets
Authorization
Bearer eyJ0eXAiOiJKV1QiLCJhbGc1NiIsIng1dCI6Ik1uQ1… (Access Token)
Response
{
"datasets": [
{
"id": "5018fd65-71e6-47cb-8dde-68931545e7b8",
"name": "MyMovies"
},
{
"id": "9862d253-f4a5-4997-9d06-1566aff78d5e",
"name": "SQLSaturday_SalesMarketing"
}
}
Power BI
REST APIs
</>
integrate
Feature
Sample – Push Data into DataSet
POST
https://api.powerbi.com/v1.0/myorg/datasets/<dataSetId>/tables/<tableName>/rows
Request
{
"rows":
[ {
"ProductID":1,
"Name":"Adjustable Race",
"Category":"Components",
"IsCompete":true,
"ManufacturedOn":"07/30/2014"}
,{
"ProductID":2,
"Name":“Racing Bike",
"Category":“Bikes",
"IsCompete":true,
"ManufacturedOn":“10/30/2014"}
]
}
Power BI
REST APIs
</>
integrate
Int64
String
Bool
Datetime
Double
14
Access Tokens
Bearer
eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ik1uQ19WWmNBVGZNNXBPWWlKSE1iYTl…
http://jwt.io/
https://dev.powerbi.com/apps?type=web
17
Feature
Embedding Power BI in your application
 Embed Power BI visuals in
your app (web, mobile,…)
 Provide rich analytic
experience to your users
 Lower development costs
Power BI
Embedded
</>
embed
Feature
With API vs Power BI Embedded (Azure)Power BI
Embedded
</>
embed
With API Power BI Embedded (Azure)
PBI Account Required
No Security Control
Not recomended for workgroups
No PBI Account Required
Developer control the security
Independent from the user account
Require an Azure Subscription
Paid by per *render
<script src="~/Scripts/powerbi.js"></script>
<script>
window.powerbi.accessToken = '{{AccessToken}}';
</script>
...
<div id=“pbiTile” powerbi-type=“report“></div>
...
<script>
var embedUrl = GetEmbedReportUrlFromPBIAPI();
$(“#pbiTile”).attr("powerbi-embed", embedUrl);
window.powerbi.embed(element);
</script>
1. Get AccessToken
2. Get the EmbedUrl using the REST
API
3. Set the EmbedUrl on the element
4. Call powerbi.embed()
21
Power BI Embedded (Azure Service)
Microsoft Azure
subscription
Embed
End users
Workspace
Workspace collection
1,N
Developer
Name
Admin Users
Endpoints
Keys
Gateways
Credentials
Geo Location
Tags
Name
Reports
Datasets
Tags
Your app
Azure SQL
Data Warehouse
Azure SQL Database
1,N
1,N
on Azure HDInsight
Power BI
Users
Permissions
Auth. providers
API keys
Token
+ Claim: Can view Report 1
+ Expiration: 5 minutes
2. User requests to
view Report 1
3. Validate token
API keys
Report 2
Workspace
Report 1
Application
Developer controls the Authentication
1. Create App token
4. User is allowed
to see Report 1
Discovery: Enumerate datasets and reports
Content Creation: Provision datasets and reports
Embed: Embed reports
Utility: Set connection strings and credentials
Power BI APIs
Azure APIs for automation
Provision workspace collections
De-provision workspace collections
Manage API keys
Data
Platform
Programmatic
Azure SQL
Data Warehouse
Spark on
Azure HDInsight
Azure SQL
Database
Microsoft Azure
REST APIs Azure Resource Manager API
Your app
Power BI Embedded
Power BI Embedded API’s
25
• Author interactive reports in
Power BI Desktop for free
• Enjoy simple pricing with no
upfront costs, hidden
maintenance fees or
customization charges
Control costs with pay-
as-you-go, render-
based pricing
0-1000 Free
1000+ $2.50/1k renders
What is one render?
When a Power BI visualization displayed
and it queries your data
Your data
Query
Your users
Cache
Price per render, per month
Feature
Custom Visuals
 Browse the Power BI Visuals
Gallery (visuals.powerbi.com) for
community created visuals that
you can download
 New visuals being added
continously
 Upload a new visual in Report
View to start using it
 Create your own custom visuals
from the published open source
visuals and the provided
framework
 Submit your custom visuals to the
community
Power BI
Custom Visuals
</>
extend
Feature
IVisual?Power BI
Custom Visuals
</>
extend
Init() Update() Destroy()
29
Applications & Samples
• DevScope “Send to PowerBI” Excel App
• https://store.office.com/send-to-power-bi-WA104379349.aspx
• DevScope “PowerBI Tiles” Office App
• https://store.office.com/power-bi-tiles-WA104379699.aspx
• Chrome Extension
• https://github.com/PowerBI/Power-BI-for-chrome
• SSIS Adapter
• http://ioi.solutions/ssis-adapter-for-power-bi-rest-api/
Links
• PowerBI
• https://powerbi.com
• https://dev.powerbi.com
• https://support.powerbi.com/
• Authentication (OAuth)
• https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-authenticate-to-
power-bi-service/
• Custom Visualizations
• https://github.com/Microsoft/PowerBI-visuals
• Stream Analytics + PowerBI
• https://azure.microsoft.com/pt-pt/documentation/articles/stream-analytics-power-bi-
dashboard/
THANK YOU TO OUR SPONSORS

Weitere ähnliche Inhalte

Was ist angesagt?

Logic Apps – Deployments
Logic Apps – DeploymentsLogic Apps – Deployments
Logic Apps – DeploymentsBizTalk360
 
Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016 Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016 Yochay Kiriaty
 
Why you shouldn't probably care about Machine Learning
Why you shouldn't probably care about Machine LearningWhy you shouldn't probably care about Machine Learning
Why you shouldn't probably care about Machine LearningBIWUG
 
Microsoft Azure and Microsoft 365 - How Will They Help You
Microsoft Azure and Microsoft 365 - How Will They Help YouMicrosoft Azure and Microsoft 365 - How Will They Help You
Microsoft Azure and Microsoft 365 - How Will They Help YouSuhail Jamaldeen
 
CREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNER
CREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNERCREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNER
CREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNERCodeOps Technologies LLP
 
Understanding SharePoint Framework Extensions
Understanding SharePoint Framework ExtensionsUnderstanding SharePoint Framework Extensions
Understanding SharePoint Framework ExtensionsBIWUG
 
Introduction to Azure Functions
Introduction to Azure FunctionsIntroduction to Azure Functions
Introduction to Azure FunctionsMarco Parenzan
 
Advanced PowerShell for Office 365
Advanced PowerShell for Office 365Advanced PowerShell for Office 365
Advanced PowerShell for Office 365BIWUG
 
API Management and Hybrid Integration
API Management and Hybrid IntegrationAPI Management and Hybrid Integration
API Management and Hybrid IntegrationBizTalk360
 
Introduction to Azure Functions - Tutorial
Introduction to Azure Functions - TutorialIntroduction to Azure Functions - Tutorial
Introduction to Azure Functions - TutorialBizTalk360
 
Deploy your Websites and Web Applications on Azure
Deploy your Websites and Web Applications on AzureDeploy your Websites and Web Applications on Azure
Deploy your Websites and Web Applications on AzureSuhail Jamaldeen
 
Azure Functions VS AWS Lambda: overview and comparison
Azure Functions VS AWS Lambda: overview and comparisonAzure Functions VS AWS Lambda: overview and comparison
Azure Functions VS AWS Lambda: overview and comparisonAlex Zyl
 
Create a modern(ish) BAM portal in (roughly) one hour!
Create a modern(ish) BAM portal in (roughly) one hour!Create a modern(ish) BAM portal in (roughly) one hour!
Create a modern(ish) BAM portal in (roughly) one hour!BizTalk360
 
Building Azure Logic Apps
Building Azure Logic AppsBuilding Azure Logic Apps
Building Azure Logic AppsBizTalk360
 
Logic apps and PowerApps - Integrate across your APIs
Logic apps and PowerApps - Integrate across your APIsLogic apps and PowerApps - Integrate across your APIs
Logic apps and PowerApps - Integrate across your APIsSriram Hariharan
 
2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...
2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...
2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...Modern Workplace Conference Paris
 
Model Driven PowerApps
Model Driven PowerAppsModel Driven PowerApps
Model Driven PowerAppsBIWUG
 
Introduction to Power Platform
Introduction to Power PlatformIntroduction to Power Platform
Introduction to Power PlatformPraveen Nair
 
Machine Learning with ML.Net
Machine Learning with ML.NetMachine Learning with ML.Net
Machine Learning with ML.NetSuhail Jamaldeen
 

Was ist angesagt? (20)

Logic Apps – Deployments
Logic Apps – DeploymentsLogic Apps – Deployments
Logic Apps – Deployments
 
Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016 Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016
 
Why you shouldn't probably care about Machine Learning
Why you shouldn't probably care about Machine LearningWhy you shouldn't probably care about Machine Learning
Why you shouldn't probably care about Machine Learning
 
Microsoft Azure and Microsoft 365 - How Will They Help You
Microsoft Azure and Microsoft 365 - How Will They Help YouMicrosoft Azure and Microsoft 365 - How Will They Help You
Microsoft Azure and Microsoft 365 - How Will They Help You
 
CREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNER
CREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNERCREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNER
CREATE RELIABLE AND LOW-CODE APPLICATION IN SERVERLESS MANNER
 
Understanding SharePoint Framework Extensions
Understanding SharePoint Framework ExtensionsUnderstanding SharePoint Framework Extensions
Understanding SharePoint Framework Extensions
 
Introduction to Azure Functions
Introduction to Azure FunctionsIntroduction to Azure Functions
Introduction to Azure Functions
 
Azure functions
Azure functionsAzure functions
Azure functions
 
Advanced PowerShell for Office 365
Advanced PowerShell for Office 365Advanced PowerShell for Office 365
Advanced PowerShell for Office 365
 
API Management and Hybrid Integration
API Management and Hybrid IntegrationAPI Management and Hybrid Integration
API Management and Hybrid Integration
 
Introduction to Azure Functions - Tutorial
Introduction to Azure Functions - TutorialIntroduction to Azure Functions - Tutorial
Introduction to Azure Functions - Tutorial
 
Deploy your Websites and Web Applications on Azure
Deploy your Websites and Web Applications on AzureDeploy your Websites and Web Applications on Azure
Deploy your Websites and Web Applications on Azure
 
Azure Functions VS AWS Lambda: overview and comparison
Azure Functions VS AWS Lambda: overview and comparisonAzure Functions VS AWS Lambda: overview and comparison
Azure Functions VS AWS Lambda: overview and comparison
 
Create a modern(ish) BAM portal in (roughly) one hour!
Create a modern(ish) BAM portal in (roughly) one hour!Create a modern(ish) BAM portal in (roughly) one hour!
Create a modern(ish) BAM portal in (roughly) one hour!
 
Building Azure Logic Apps
Building Azure Logic AppsBuilding Azure Logic Apps
Building Azure Logic Apps
 
Logic apps and PowerApps - Integrate across your APIs
Logic apps and PowerApps - Integrate across your APIsLogic apps and PowerApps - Integrate across your APIs
Logic apps and PowerApps - Integrate across your APIs
 
2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...
2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...
2018-10-17 J1 6D - Draw your imagination with Microsoft Graph API - Dipti Chh...
 
Model Driven PowerApps
Model Driven PowerAppsModel Driven PowerApps
Model Driven PowerApps
 
Introduction to Power Platform
Introduction to Power PlatformIntroduction to Power Platform
Introduction to Power Platform
 
Machine Learning with ML.Net
Machine Learning with ML.NetMachine Learning with ML.Net
Machine Learning with ML.Net
 

Andere mochten auch

Office 365 Connectorsv1
Office 365 Connectorsv1Office 365 Connectorsv1
Office 365 Connectorsv1Shahzad S
 
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013Corey Roth
 
Office 365 Connectors
Office 365 ConnectorsOffice 365 Connectors
Office 365 ConnectorsSPC Adriatics
 
SPSMad2016 Rubén Toribio - Template
SPSMad2016 Rubén Toribio - TemplateSPSMad2016 Rubén Toribio - Template
SPSMad2016 Rubén Toribio - TemplateRub Toribio Gallardo
 
Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...
Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...
Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...Ayman El-Hattab
 
Sql Saturday 228 Rapid Data Integration Using SharePoint BCS
Sql Saturday 228   Rapid Data Integration Using SharePoint BCSSql Saturday 228   Rapid Data Integration Using SharePoint BCS
Sql Saturday 228 Rapid Data Integration Using SharePoint BCSObilogic
 
How do i connect to that
How do i connect to thatHow do i connect to that
How do i connect to thatBecky Bertram
 
SharePoint 2016 Search
SharePoint 2016 SearchSharePoint 2016 Search
SharePoint 2016 SearchMike Maadarani
 
PowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate DataPowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate DataBram de Jager
 
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...Layer2
 
PowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate DataPowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate DataBram de Jager
 
Best practices to deliver data analytics to the business with power bi
Best practices to deliver data analytics to the business with power biBest practices to deliver data analytics to the business with power bi
Best practices to deliver data analytics to the business with power biSatya Shyam K Jayanty
 
French and english five little speckled frogs
French and english five little speckled frogsFrench and english five little speckled frogs
French and english five little speckled frogsM, Michelle Jeannite
 
Os animais (6)
Os animais (6)Os animais (6)
Os animais (6)sararute
 
Programming Languages Paradigms
Programming Languages ParadigmsProgramming Languages Paradigms
Programming Languages Paradigmsrodrigovmoraes
 
Adlandpro coffee lovers slide share
Adlandpro coffee lovers slide shareAdlandpro coffee lovers slide share
Adlandpro coffee lovers slide shareDiane Bjorling
 
Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...
Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...
Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...Zelia Lopes
 
2013版中国常规天然气管道项目名单(英文)
2013版中国常规天然气管道项目名单(英文)2013版中国常规天然气管道项目名单(英文)
2013版中国常规天然气管道项目名单(英文)arapublication
 
Projeto alinhamento das estratégias de operações
Projeto alinhamento das estratégias de operaçõesProjeto alinhamento das estratégias de operações
Projeto alinhamento das estratégias de operaçõesGiovani Rocha Rodrigues
 
CLOSED-CHEST CARDIAC MASSAGE
CLOSED-CHEST CARDIAC MASSAGECLOSED-CHEST CARDIAC MASSAGE
CLOSED-CHEST CARDIAC MASSAGEreanyma
 

Andere mochten auch (20)

Office 365 Connectorsv1
Office 365 Connectorsv1Office 365 Connectorsv1
Office 365 Connectorsv1
 
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
 
Office 365 Connectors
Office 365 ConnectorsOffice 365 Connectors
Office 365 Connectors
 
SPSMad2016 Rubén Toribio - Template
SPSMad2016 Rubén Toribio - TemplateSPSMad2016 Rubén Toribio - Template
SPSMad2016 Rubén Toribio - Template
 
Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...
Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...
Creating No-Code BCS Solutions in SharePoint 2010 and Office 2010–From TechEd...
 
Sql Saturday 228 Rapid Data Integration Using SharePoint BCS
Sql Saturday 228   Rapid Data Integration Using SharePoint BCSSql Saturday 228   Rapid Data Integration Using SharePoint BCS
Sql Saturday 228 Rapid Data Integration Using SharePoint BCS
 
How do i connect to that
How do i connect to thatHow do i connect to that
How do i connect to that
 
SharePoint 2016 Search
SharePoint 2016 SearchSharePoint 2016 Search
SharePoint 2016 Search
 
PowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate DataPowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate Data
 
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
 
PowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate DataPowerApps, the Developer Story: Build an API to Integrate Corporate Data
PowerApps, the Developer Story: Build an API to Integrate Corporate Data
 
Best practices to deliver data analytics to the business with power bi
Best practices to deliver data analytics to the business with power biBest practices to deliver data analytics to the business with power bi
Best practices to deliver data analytics to the business with power bi
 
French and english five little speckled frogs
French and english five little speckled frogsFrench and english five little speckled frogs
French and english five little speckled frogs
 
Os animais (6)
Os animais (6)Os animais (6)
Os animais (6)
 
Programming Languages Paradigms
Programming Languages ParadigmsProgramming Languages Paradigms
Programming Languages Paradigms
 
Adlandpro coffee lovers slide share
Adlandpro coffee lovers slide shareAdlandpro coffee lovers slide share
Adlandpro coffee lovers slide share
 
Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...
Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...
Antropologia Ciborgue: a onipresença da tecnologia e a condição humana no cib...
 
2013版中国常规天然气管道项目名单(英文)
2013版中国常规天然气管道项目名单(英文)2013版中国常规天然气管道项目名单(英文)
2013版中国常规天然气管道项目名单(英文)
 
Projeto alinhamento das estratégias de operações
Projeto alinhamento das estratégias de operaçõesProjeto alinhamento das estratégias de operações
Projeto alinhamento das estratégias de operações
 
CLOSED-CHEST CARDIAC MASSAGE
CLOSED-CHEST CARDIAC MASSAGECLOSED-CHEST CARDIAC MASSAGE
CLOSED-CHEST CARDIAC MASSAGE
 

Ähnlich wie Tuga IT - Power BI for Developers

Aprendamos DAX - José Ahias López Portillo
Aprendamos DAX - José Ahias López PortilloAprendamos DAX - José Ahias López Portillo
Aprendamos DAX - José Ahias López PortilloSpanishPASSVC
 
General Presentation - DIAD and AIAD, Dashboard and Apps
General Presentation - DIAD and AIAD, Dashboard and AppsGeneral Presentation - DIAD and AIAD, Dashboard and Apps
General Presentation - DIAD and AIAD, Dashboard and AppsVishal Pawar
 
Embed Interactive Reports in Your Apps
Embed Interactive Reports in Your AppsEmbed Interactive Reports in Your Apps
Embed Interactive Reports in Your AppsTeo Lachev
 
Bringing your data to life using Power BI - SPS London 2016
Bringing your data to life using Power BI - SPS London 2016Bringing your data to life using Power BI - SPS London 2016
Bringing your data to life using Power BI - SPS London 2016Chirag Patel
 
Panorama Business Intelligence Solution
Panorama Business Intelligence SolutionPanorama Business Intelligence Solution
Panorama Business Intelligence Solutionwww.panorama.com
 
Power BI Create lightning fast dashboard with power bi & Its Components
Power BI Create lightning fast dashboard with power bi & Its Components Power BI Create lightning fast dashboard with power bi & Its Components
Power BI Create lightning fast dashboard with power bi & Its Components Vishal Pawar
 
Groupby -Power bi dashboard in hour by vishal pawar-Presentation
Groupby -Power bi dashboard in hour by vishal pawar-Presentation Groupby -Power bi dashboard in hour by vishal pawar-Presentation
Groupby -Power bi dashboard in hour by vishal pawar-Presentation Vishal Pawar
 
Formulating Power BI Enterprise Strategy
Formulating Power BI Enterprise StrategyFormulating Power BI Enterprise Strategy
Formulating Power BI Enterprise StrategyTeo Lachev
 
What's New in NovaView 6.2
What's New in NovaView 6.2What's New in NovaView 6.2
What's New in NovaView 6.2www.panorama.com
 
Empower Your Users with Advanced Analytics On-the-Fly
Empower Your Users with Advanced Analytics On-the-FlyEmpower Your Users with Advanced Analytics On-the-Fly
Empower Your Users with Advanced Analytics On-the-Flywww.panorama.com
 
Power BI Report Server: a Deep Dive for PASS Business Analytics Virtual Group
Power BI Report Server: a Deep Dive for PASS Business Analytics Virtual GroupPower BI Report Server: a Deep Dive for PASS Business Analytics Virtual Group
Power BI Report Server: a Deep Dive for PASS Business Analytics Virtual GroupLuca Gualtieri
 
BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)
BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)
BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)serge luca
 
Create Your First SQL Server Cubes
Create Your First SQL Server CubesCreate Your First SQL Server Cubes
Create Your First SQL Server CubesMark Kromer
 
Modern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced AnalyticsModern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced AnalyticsCollective Intelligence Inc.
 
Data Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd DecData Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd DecJonathan Woodward
 
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...Vishal Pawar
 
What's new in sharepoint 2016
What's new in sharepoint 2016What's new in sharepoint 2016
What's new in sharepoint 2016Mike Maadarani
 
Complete Business Intelligence Solution for Your Microsoft Platform
Complete Business Intelligence Solution for Your Microsoft PlatformComplete Business Intelligence Solution for Your Microsoft Platform
Complete Business Intelligence Solution for Your Microsoft Platformwww.panorama.com
 
Microsoft SQL Server 2008 R2 - Analysis Services Presentation
Microsoft SQL Server 2008 R2 - Analysis Services PresentationMicrosoft SQL Server 2008 R2 - Analysis Services Presentation
Microsoft SQL Server 2008 R2 - Analysis Services PresentationMicrosoft Private Cloud
 

Ähnlich wie Tuga IT - Power BI for Developers (20)

Power bi overview
Power bi overview Power bi overview
Power bi overview
 
Aprendamos DAX - José Ahias López Portillo
Aprendamos DAX - José Ahias López PortilloAprendamos DAX - José Ahias López Portillo
Aprendamos DAX - José Ahias López Portillo
 
General Presentation - DIAD and AIAD, Dashboard and Apps
General Presentation - DIAD and AIAD, Dashboard and AppsGeneral Presentation - DIAD and AIAD, Dashboard and Apps
General Presentation - DIAD and AIAD, Dashboard and Apps
 
Embed Interactive Reports in Your Apps
Embed Interactive Reports in Your AppsEmbed Interactive Reports in Your Apps
Embed Interactive Reports in Your Apps
 
Bringing your data to life using Power BI - SPS London 2016
Bringing your data to life using Power BI - SPS London 2016Bringing your data to life using Power BI - SPS London 2016
Bringing your data to life using Power BI - SPS London 2016
 
Panorama Business Intelligence Solution
Panorama Business Intelligence SolutionPanorama Business Intelligence Solution
Panorama Business Intelligence Solution
 
Power BI Create lightning fast dashboard with power bi & Its Components
Power BI Create lightning fast dashboard with power bi & Its Components Power BI Create lightning fast dashboard with power bi & Its Components
Power BI Create lightning fast dashboard with power bi & Its Components
 
Groupby -Power bi dashboard in hour by vishal pawar-Presentation
Groupby -Power bi dashboard in hour by vishal pawar-Presentation Groupby -Power bi dashboard in hour by vishal pawar-Presentation
Groupby -Power bi dashboard in hour by vishal pawar-Presentation
 
Formulating Power BI Enterprise Strategy
Formulating Power BI Enterprise StrategyFormulating Power BI Enterprise Strategy
Formulating Power BI Enterprise Strategy
 
What's New in NovaView 6.2
What's New in NovaView 6.2What's New in NovaView 6.2
What's New in NovaView 6.2
 
Empower Your Users with Advanced Analytics On-the-Fly
Empower Your Users with Advanced Analytics On-the-FlyEmpower Your Users with Advanced Analytics On-the-Fly
Empower Your Users with Advanced Analytics On-the-Fly
 
Power BI Report Server: a Deep Dive for PASS Business Analytics Virtual Group
Power BI Report Server: a Deep Dive for PASS Business Analytics Virtual GroupPower BI Report Server: a Deep Dive for PASS Business Analytics Virtual Group
Power BI Report Server: a Deep Dive for PASS Business Analytics Virtual Group
 
BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)
BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)
BI : SharePoint 2016 BI or PowerBI v2 ? (O365 Saturday Copenhagen, 2016)
 
Create Your First SQL Server Cubes
Create Your First SQL Server CubesCreate Your First SQL Server Cubes
Create Your First SQL Server Cubes
 
Modern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced AnalyticsModern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced Analytics
 
Data Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd DecData Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd Dec
 
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
 
What's new in sharepoint 2016
What's new in sharepoint 2016What's new in sharepoint 2016
What's new in sharepoint 2016
 
Complete Business Intelligence Solution for Your Microsoft Platform
Complete Business Intelligence Solution for Your Microsoft PlatformComplete Business Intelligence Solution for Your Microsoft Platform
Complete Business Intelligence Solution for Your Microsoft Platform
 
Microsoft SQL Server 2008 R2 - Analysis Services Presentation
Microsoft SQL Server 2008 R2 - Analysis Services PresentationMicrosoft SQL Server 2008 R2 - Analysis Services Presentation
Microsoft SQL Server 2008 R2 - Analysis Services Presentation
 

Kürzlich hochgeladen

DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxMike Bennett
 
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Thomas Poetter
 
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...Amil Baba Dawood bangali
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanMYRABACSAFRA2
 
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhhThiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhhYasamin16
 
Defining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data StoryDefining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data StoryJeremy Anderson
 
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Boston Institute of Analytics
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our WorldEduminds Learning
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...GQ Research
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxaleedritatuxx
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...limedy534
 
Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Seán Kennedy
 
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理e4aez8ss
 
Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsVICTOR MAESTRE RAMIREZ
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...Boston Institute of Analytics
 

Kürzlich hochgeladen (20)

DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptx
 
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population Mean
 
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhhThiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhh
 
Defining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data StoryDefining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data Story
 
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our World
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
 
Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...
 
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
 
Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business Professionals
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
 

Tuga IT - Power BI for Developers

  • 2. THANK YOU TO OUR SPONSORS
  • 3. THANK YOU TO OUR TEAM ANDRÉ BATISTA ANDRÉ MELANCIA ANDRÉ VALA ANTÓNIO LOURENÇO BRUNO LOPES CLÁUDIO SILVA RUI BASTOS NIKO NEUGEBAUER RUI REISRICARDO CABRAL NUNO CANCELO PAULO MATOS PEDRO SIMÕES SANDRA MORGADO SANDRO PEREIRA
  • 4. Agenda 09:00 - 10:00 - Jorge Camões 1 10:00 - 10:45 - Jorge Camões 2 10:45 - 11:00 - Coffee-Break 1 11:00 - 12:00 - Jorge Camões 2 12:00 - 13:00 - Rui Romano 13:00 - 14:00 - Lunch 14:00 - 15:15 - Wolfgang 15:25 - 15:45 - Sponsor Session 15:45 - 16:00 - Coffee-break 2 16:00 - 17:10 – Gerhard 17:10 - 17:30 - Q & A
  • 7.
  • 8. • Industry-leading SaaS service • Data Analysis & Exploration • Raw Data => Useful Insights (in minutes) • Out of the box Connectors to SaaS Solutions • Extension to current BI investments (SSAS, SAP) Power BI? Connecting any user, in any business, anywhere, with their data
  • 9. 9
  • 10. Feature Push data Integration Real- time integrate embed extend Power BI Platform Develop exactly what your organization needs Visuals </> Automate
  • 11. Feature Open APIs for integration  Programmatically access Power BI resources (datasets, tables)  Use the REST API to push data directly from your application into Power BI  Follow the Standards  REST + JSON + OAUTH  Cross Platform Power BI SaaS Service Power BI User Account Your Service or Application Push Data Component Push Content Component Datasets Reports Dashboards Power BI REST APIs </> integrate
  • 12. Feature Sample – List DataSets GET https://api.powerbi.com/v1.0/myorg/datasets Authorization Bearer eyJ0eXAiOiJKV1QiLCJhbGc1NiIsIng1dCI6Ik1uQ1… (Access Token) Response { "datasets": [ { "id": "5018fd65-71e6-47cb-8dde-68931545e7b8", "name": "MyMovies" }, { "id": "9862d253-f4a5-4997-9d06-1566aff78d5e", "name": "SQLSaturday_SalesMarketing" } } Power BI REST APIs </> integrate
  • 13. Feature Sample – Push Data into DataSet POST https://api.powerbi.com/v1.0/myorg/datasets/<dataSetId>/tables/<tableName>/rows Request { "rows": [ { "ProductID":1, "Name":"Adjustable Race", "Category":"Components", "IsCompete":true, "ManufacturedOn":"07/30/2014"} ,{ "ProductID":2, "Name":“Racing Bike", "Category":“Bikes", "IsCompete":true, "ManufacturedOn":“10/30/2014"} ] } Power BI REST APIs </> integrate Int64 String Bool Datetime Double
  • 14. 14
  • 17. 17
  • 18. Feature Embedding Power BI in your application  Embed Power BI visuals in your app (web, mobile,…)  Provide rich analytic experience to your users  Lower development costs Power BI Embedded </> embed
  • 19. Feature With API vs Power BI Embedded (Azure)Power BI Embedded </> embed With API Power BI Embedded (Azure) PBI Account Required No Security Control Not recomended for workgroups No PBI Account Required Developer control the security Independent from the user account Require an Azure Subscription Paid by per *render
  • 20. <script src="~/Scripts/powerbi.js"></script> <script> window.powerbi.accessToken = '{{AccessToken}}'; </script> ... <div id=“pbiTile” powerbi-type=“report“></div> ... <script> var embedUrl = GetEmbedReportUrlFromPBIAPI(); $(“#pbiTile”).attr("powerbi-embed", embedUrl); window.powerbi.embed(element); </script> 1. Get AccessToken 2. Get the EmbedUrl using the REST API 3. Set the EmbedUrl on the element 4. Call powerbi.embed()
  • 21. 21
  • 22. Power BI Embedded (Azure Service) Microsoft Azure subscription Embed End users Workspace Workspace collection 1,N Developer Name Admin Users Endpoints Keys Gateways Credentials Geo Location Tags Name Reports Datasets Tags Your app Azure SQL Data Warehouse Azure SQL Database 1,N 1,N on Azure HDInsight
  • 23. Power BI Users Permissions Auth. providers API keys Token + Claim: Can view Report 1 + Expiration: 5 minutes 2. User requests to view Report 1 3. Validate token API keys Report 2 Workspace Report 1 Application Developer controls the Authentication 1. Create App token 4. User is allowed to see Report 1
  • 24. Discovery: Enumerate datasets and reports Content Creation: Provision datasets and reports Embed: Embed reports Utility: Set connection strings and credentials Power BI APIs Azure APIs for automation Provision workspace collections De-provision workspace collections Manage API keys Data Platform Programmatic Azure SQL Data Warehouse Spark on Azure HDInsight Azure SQL Database Microsoft Azure REST APIs Azure Resource Manager API Your app Power BI Embedded Power BI Embedded API’s
  • 25. 25
  • 26. • Author interactive reports in Power BI Desktop for free • Enjoy simple pricing with no upfront costs, hidden maintenance fees or customization charges Control costs with pay- as-you-go, render- based pricing 0-1000 Free 1000+ $2.50/1k renders What is one render? When a Power BI visualization displayed and it queries your data Your data Query Your users Cache Price per render, per month
  • 27. Feature Custom Visuals  Browse the Power BI Visuals Gallery (visuals.powerbi.com) for community created visuals that you can download  New visuals being added continously  Upload a new visual in Report View to start using it  Create your own custom visuals from the published open source visuals and the provided framework  Submit your custom visuals to the community Power BI Custom Visuals </> extend
  • 29. 29
  • 30.
  • 31.
  • 32.
  • 33. Applications & Samples • DevScope “Send to PowerBI” Excel App • https://store.office.com/send-to-power-bi-WA104379349.aspx • DevScope “PowerBI Tiles” Office App • https://store.office.com/power-bi-tiles-WA104379699.aspx • Chrome Extension • https://github.com/PowerBI/Power-BI-for-chrome • SSIS Adapter • http://ioi.solutions/ssis-adapter-for-power-bi-rest-api/
  • 34. Links • PowerBI • https://powerbi.com • https://dev.powerbi.com • https://support.powerbi.com/ • Authentication (OAuth) • https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-authenticate-to- power-bi-service/ • Custom Visualizations • https://github.com/Microsoft/PowerBI-visuals • Stream Analytics + PowerBI • https://azure.microsoft.com/pt-pt/documentation/articles/stream-analytics-power-bi- dashboard/
  • 35.
  • 36. THANK YOU TO OUR SPONSORS