Skip to content

Commit fa0e097

Browse files
authored
Live publish
2 parents 8f24037 + 9693864 commit fa0e097

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

powerapps-docs/maker/model-driven-apps/create-edit-powerbi-report-dataset-components.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: paulinbar
55
manager: kfollis
66
ms.component: cds
77
ms.topic: how-to
8-
ms.date: 09/16/2022
8+
ms.date: 09/21/2022
99
ms.subservice: dataverse-maker
1010
ms.author: painbar
1111
search.audienceType:
@@ -38,15 +38,17 @@ In this article, you'll learn how to do the following tasks:
3838

3939
## General limitations and restrictions
4040

41-
* The **Power BI Extensions (Preview)** system solution must be installed. It is installed in new environments by default. Existing environments must install it manually from PPAC before importing solutions and creating Power BI components. To install the extension, go to the [Power Platform admin center](https://aka.ms/powerbi_extension).
42-
* Connection references to Power BI data sources aren't supported.
43-
* Only datasets created with the enhanced dataset model are supported. Paginated reports aren't supported.
41+
* The **Power BI Extensions (Preview)** system solution must be installed. In new environments it's installed by default. Existing environments must install it manually from PPAC before importing solutions and creating Power BI components. To install the extension, go to the [Power Platform admin center](https://aka.ms/powerbi_extension).
42+
* Only Power BI reports and datasets can be added to a solution. Only datasets created with the enhanced dataset model are supported. Any other artifact type is not supported (such as dashboard, dataflow, and paginated report).
43+
* Connection references to Power BI data sources aren't supported (for example, in composite models).
4444
* The Power BI dataset parameter types "Any" and "Binary" aren't supported in the Power BI integration with Power Apps solutions.
4545
* Sharing Power BI reports and datasets can only be done from Power BI (sharing the model driven app doesn't share the embedded report).
4646
* Recovery from workspace deletion isn't supported. Once the dedicated environment workspace has been deleted, you won't be able to add/import any Power BI component to the Power Apps environment.
4747
* Power Apps Application IDs aren't supported during public preview.
4848
* The Power Apps environment and the Power BI workspaces all need to be in the same geography. For more information, see [Considerations working with the Power Apps/Power BI integration](/power-bi/collaborate-share/service-power-bi-powerapps-integration-considerations#cross-geo-operations).
49-
* Environment life cycle operations aren't supported during public preview. More information: [Considerations working with the Power Apps/Power BI integration](/power-bi/collaborate-share/service-power-bi-powerapps-integration-considerations#environment-life-cycle-operations).
49+
* Environment life cycle operations aren't supported during preview. More information: [Considerations working with the Power Apps/Power BI integration](/power-bi/collaborate-share/service-power-bi-powerapps-integration-considerations#environment-life-cycle-operations).
50+
* Dataverse for Teams environments are not supported.
51+
* National clouds are not currently supported.
5052

5153
## Create Power BI report and dataset components
5254

powerapps-docs/maker/portals/important-changes-deprecations.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
title: Important upcoming changes and deprecations in Power Apps portals
33
description: Learn about the important changes, including deprecations, coming soon to Power Apps portals.
44
author: sandhangitmsft
5-
65
ms.topic: conceptual
76
ms.custom:
8-
ms.date: 09/09/2022
7+
ms.date: 09/21/2022
98
ms.subservice: portals
109
ms.author: sandhan
1110
ms.reviewer: ndoelman
@@ -37,10 +36,12 @@ At launch, users with the system administrator role along with [service admins](
3736
3837
## OAuth 2.0 implicit grant flow within your portal
3938

40-
Starting June 2022, [authorize endpoint](oauth-implicit-grant-flow.md#authorize-endpoint-details), [token endpoint](oauth-implicit-grant-flow.md#token-endpoint-details) using GET request, and using the default certificate for OAuth 2.0 implicit grant flow will be deprecated. No action is needed for newly created portals or for existing portals that don't use this feature. If you're already using this feature, you need to use the token endpoint POST request to get a secure access token to authorize the external APIs.
39+
The [authorize endpoint](oauth-implicit-grant-flow.md#authorize-endpoint-details), [token endpoint](oauth-implicit-grant-flow.md#token-endpoint-details) using GET request, and using the default certificate for OAuth 2.0 implicit grant flow is deprecated. No action is needed for newly created portals or for existing portals that don't use this feature. If you're already using this feature, you need to use the token endpoint POST request to get a secure access token to authorize the external APIs.
4140

4241
> [!NOTE]
43-
> All existing customers who are using this deprecated feature need to migrate to the supported method by October 2022.
42+
> - All existing customers who are using this deprecated feature need to migrate to the supported method by October 2022.
43+
> - For more information on using a custom certificate, go to [Using a custom certificate](oauth-implicit-grant-flow.md#custom-certificates).
44+
> - For sample code on using POST calls on the Token endpoint, go to [Token endpoint sample](oauth-implicit-grant-flow.md#token-endpoint-sample).
4445
4546
## List OData feed
4647

@@ -111,4 +112,4 @@ Starting with portals version [9.3.4.x](versions/version-9.3.4.x.md), the follow
111112

112113
[Important changes (deprecations) coming in Power Apps, Power Automate, and customer engagement apps](/power-platform/important-changes-coming)
113114

114-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
115+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/maker/portals/oauth-implicit-grant-flow.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
title: Use OAuth 2.0 implicit grant flow within your portal
33
description: Learn how to make client-side calls to external APIs and secure them by using OAuth implicit grant flow in your portal.
44
author: gitanjalisingh33msft
5-
65
ms.topic: conceptual
76
ms.custom:
8-
ms.date: 05/11/2022
7+
ms.date: 09/21/2022
98
ms.subservice: portals
109
ms.author: gisingh
1110
ms.reviewer: ndoelman
@@ -25,7 +24,7 @@ OAuth 2.0 implicit grant flow supports [token](#token-endpoint-details) endpoint
2524

2625
## Custom certificates
2726

28-
Custom certificates provide another layer of security while using the OAuth 2.0 end point. Use the [Power Platform admin center](/admin/manage-custom-certificates) to upload the custom certificate. After uploading the custom certificate, you need to update site settings as below
27+
Using the default certificate for OAuth 2.0 implicit grant flow is [deprecated](important-changes-deprecations.md#oauth-20-implicit-grant-flow-within-your-portal). You will need to use a custom certificate while using the OAuth 2.0 endpoint. Use the [Power Platform admin center](/admin/manage-custom-certificates) to upload the custom certificate. After uploading the custom certificate, you need to update site settings as below:
2928

3029
1. Go to [portal settings](manage-existing-portals.md#settings) and select **Site Settings**.
3130

@@ -161,4 +160,4 @@ This sample is an ASP.NET based project and is used to validate the ID token iss
161160
This sample shows how you can use the getAuthenticationToken function to fetch an ID token using the Token endpoint in Power Apps portals. The sample can be found here: [Token Endpoint sample](https://github.com/microsoft/PowerApps-Samples/blob/master/portals/TokenEndpoint.js).
162161

163162

164-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
163+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

0 commit comments

Comments
 (0)