Skip to content

Commit ef921bb

Browse files
authored
Merge pull request #2881 from MicrosoftDocs/master
Pushing changes live
2 parents ef1561b + f353cf9 commit ef921bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+430
-72
lines changed

powerapps-docs/developer/common-data-service/best-practices/work-with-metadata/retrieve-published-metadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public RetrieveAllEntitiesAttributesResponse GetAllEntitiesImplicit(IOrganizatio
6060
}
6161
```
6262

63-
### Explictly controlling the behavior
63+
### Explicitly controlling the behavior
6464

6565
Explicitly setting the `RetrieveAsIfPublished` property to retrieve only published customizations
6666

powerapps-docs/developer/common-data-service/online-management-api/sample-quick-start.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ search.audienceType:
1313
search.app:
1414
- PowerApps
1515
---
16-
# Quick Start Sample: Retrieve Common Data Service environements using Online Management API
16+
# Quick Start Sample: Retrieve Common Data Service environments using Online Management API
1717

18-
The C# sample demonstrates how to authenticate to the Online Management API and then retrieve all Common Data Service environements from your Office 365 tenant.
18+
The C# sample demonstrates how to authenticate to the Online Management API and then retrieve all Common Data Service environments from your Office 365 tenant.
1919

2020
The sample uses the authentication [helper code](sample-authentication-helper.md) to easily authenticate to Online Management API using the OAuth 2.0 protocol and pass in the access token in header of your request.
2121

@@ -30,7 +30,7 @@ The sample performs the following tasks:
3030
b. Uses an HttpClient instance to connect to Online Management API service.
3131

3232
c. Specifies the API service base address and the max period of execution time.
33-
1. Uses the **RetrieveInstancesAsync** method to execute a http request to retrieve all Customer Enagement instances in your Office 365 tenant, and then displays the reponse.
33+
1. Uses the **RetrieveInstancesAsync** method to execute a http request to retrieve all Customer Engagement instances in your Office 365 tenant, and then displays the response.
3434

3535
## Run this sample
3636
Before you can run this sample, make sure that you have:

powerapps-docs/developer/common-data-service/org-service/metadata-attributemetadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ Console.WriteLine("Created {0} with the value of {1}.",
502502

503503
This sample code shows how to change the order of options in a local option set. The following sample retrieves a custom <xref:Microsoft.Xrm.Sdk.Metadata.PicklistAttributeMetadata> attribute and changes the order of the original options using the [OrderBy](https://msdn.microsoft.com/library/system.linq.enumerable.orderby.aspx)**LINQ** function to sort items in ascending order by the label text. Then it uses <xref:Microsoft.Xrm.Sdk.Messages.OrderOptionRequest> to set the new order of the options for the attribute.
504504

505-
Use the [OrderByDecending](https://msdn.microsoft.com/library/system.linq.enumerable.orderbydescending.aspx) linq function to order the items in descending order.
505+
Use the [OrderByDescending](https://msdn.microsoft.com/library/system.linq.enumerable.orderbydescending.aspx) linq function to order the items in descending order.
506506

507507
```csharp
508508
// Use the RetrieveAttributeRequest message to retrieve

powerapps-docs/developer/common-data-service/org-service/metadata-retrieve-detect-changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ The classes in the <xref:Microsoft.Xrm.Sdk.Metadata.Query> namespace and the <xr
141141
EntityFilter.Conditions.Add(new MetadataConditionExpression("IsIntersect", MetadataConditionOperator.Equals, false));
142142
EntityFilter.Conditions.Add(new MetadataConditionExpression("OwnershipType", MetadataConditionOperator.Equals, OwnershipTypes.UserOwned));
143143
EntityFilter.Conditions.Add(new MetadataConditionExpression("SchemaName", MetadataConditionOperator.NotIn, excludedEntities));
144-
MetadataConditionExpression isVisibileInMobileTrue = new MetadataConditionExpression("IsVisibleInMobile", MetadataConditionOperator.Equals, true);
145-
EntityFilter.Conditions.Add(isVisibileInMobileTrue);
144+
MetadataConditionExpression isVisibleInMobileTrue = new MetadataConditionExpression("IsVisibleInMobile", MetadataConditionOperator.Equals, true);
145+
EntityFilter.Conditions.Add(isVisibleInMobileTrue);
146146
```
147147

148148
### Specify the properties you want

powerapps-docs/developer/common-data-service/org-service/web-service-error-codes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ This topic lists the error codes you might encounter when you debug your code.
6666
> |**Name**:<br />AppConfigFeatureNotEnabled<br />**Hex**:<br />80072200<br />**Number**:<br />-2147016192|In-App Customization App Configuration feature is not enabled.|
6767
> |**Name**:<br />AppEntityLimitExceeded<br />**Hex**:<br />80048547<br />**Number**:<br />-2147187385|{0}|
6868
> |**Name**:<br />ApplicationMetadataConverterFailed<br />**Hex**:<br />8005F231<br />**Number**:<br />-2147093967|Sorry, something went wrong. Please try again, or restart the app.|
69-
> |**Name**:<br />ApplicationMetadatadaCreateFailed<br />**Hex**:<br />8005F233<br />**Number**:<br />-2147093965|Sorry, something went wrong. Please try again, or restart the app.|
70-
> |**Name**:<br />ApplicationMetadatadaNullData<br />**Hex**:<br />8005F232<br />**Number**:<br />-2147093966|Sorry, something went wrong. Please try again, or restart the app.|
71-
> |**Name**:<br />ApplicationMetadatadaUpdateFailed<br />**Hex**:<br />8005F234<br />**Number**:<br />-2147093964|Sorry, something went wrong. Please try again, or restart the app.|
69+
> |**Name**:<br />ApplicationMetadataCreateFailed<br />**Hex**:<br />8005F233<br />**Number**:<br />-2147093965|Sorry, something went wrong. Please try again, or restart the app.|
70+
> |**Name**:<br />ApplicationMetadataNullData<br />**Hex**:<br />8005F232<br />**Number**:<br />-2147093966|Sorry, something went wrong. Please try again, or restart the app.|
71+
> |**Name**:<br />ApplicationMetadataUpdateFailed<br />**Hex**:<br />8005F234<br />**Number**:<br />-2147093964|Sorry, something went wrong. Please try again, or restart the app.|
7272
> |**Name**:<br />ApplicationMetadataFailedWithContinue<br />**Hex**:<br />8005F241<br />**Number**:<br />-2147093951|There was a problem with the server configuration changes. You can continue using the application, but may experience difficulties, including the inability to save changes. Please contact your Dynamics 365 administrator and give them the information available in ‘more information’.|
7373
> |**Name**:<br />ApplicationMetadataGetPreviewMetadataUnknownError<br />**Hex**:<br />8005F230<br />**Number**:<br />-2147093968|Sorry, something went wrong. Please try again, or restart the app.|
7474
> |**Name**:<br />ApplicationMetadataPrepareCustomizationsAppLock<br />**Hex**:<br />8005F237<br />**Number**:<br />-2147093961|We encountered some issues when we tried to prepare your customizations for your users. Users on some clients won't be able to download your customization updates until this issue is resolved.|

powerapps-docs/maker/TOC.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@
7171
href: ../user/calendar-view.md
7272
- name: FAQ about activities
7373
href: ../user/faq-for-timeline-and-activity.md
74-
- name: View and create email through the activities grid
75-
href: ../user/view-create-email.md
76-
- name: Send email using the enhanced email experience
77-
href: ../user/enhanced-email.md
78-
- name: Insert an email template
79-
href: ../user/insert-email-template.md
8074
- name: Use the lookup field on a record
8175
href: ../user/lookup-field.md
8276
- name: View a profile card
@@ -93,6 +87,18 @@
9387
href: ../user/track-your-progress-with-dashboard-and-charts.md
9488
- name: Add Power BI dashboards
9589
href: ../user/add-powerbi-dashboards.md
90+
- name: Work with email
91+
items:
92+
- name: View and create email through the activities grid
93+
href: ../user/view-create-email.md
94+
- name: Send email using the enhanced email experience
95+
href: ../user/enhanced-email.md
96+
- name: Insert an email template
97+
href: ../user/insert-email-template.md
98+
- name: Send email to multiple recipients
99+
href: ../user/direct-email.md
100+
- name: Resolve an unresolved email recipient
101+
href: ../user/unresolved-email-recipient.md
96102
- name: Collaboration
97103
items:
98104
- name: Use OneDrive for Business

powerapps-docs/maker/portals/admin/add-powerbi-report.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,18 @@ manager: kvivek
66
ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom:
9-
ms.date: 11/22/2019
9+
ms.date: 05/13/2019
1010
ms.author: tapanm
1111
ms.reviewer:
1212
---
1313

1414

1515
# Add a Power BI report or dashboard to a web page in portal
1616

17-
You can add a Power BI report or dashboard to a web page in portal by using the [powerbi](../liquid/portals-entity-tags.md#powerbi) Liquid tag. You can add the tag in the **Copy** field on a web page or in the **Source** field on a web template. If you adding a Power BI report or dashboard created in the new workspace in Power BI, you must specify the authentication type as **powerbiembedded** in the powerbi Liquid tag.
17+
You can add a Power BI report or dashboard to a web page in portal by using the [powerbi](../liquid/portals-entity-tags.md#powerbi) Liquid tag. You can add the tag in the **Copy** field on a web page or in the **Source** field on a web template. If you adding a Power BI report or dashboard created in the new workspace in Power BI, you must specify the authentication type as **powerbiembedded** in the *powerbi* Liquid tag.
18+
19+
> [!TIP]
20+
> This article explains how to add a Power BI report or dashboard using *powerbi* liquid tag. To add **Power BI component** on a webpage in your portal using the portals Studio, go to [Add a Power BI component to a webpage using the portals Studio](../compose-page.md#add-power-bi).
1821
1922
For example:
2023

@@ -55,6 +58,6 @@ For example:
5558

5659
### See also
5760

58-
59-
[powerbi Liquid tag](../liquid/portals-entity-tags.md#powerbi)<br>
60-
[Set up Power BI integration](set-up-power-bi-integration.md)
61+
- [Add a Power BI component to a webpage using the portals Studio](../compose-page.md#add-power-bi)
62+
- [Set up Power BI integration](set-up-power-bi-integration.md)
63+
- [powerbi Liquid tag](../liquid/portals-entity-tags.md#powerbi)

powerapps-docs/maker/portals/admin/set-up-power-bi-integration.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: kvivek
66
ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom:
9-
ms.date: 04/27/2020
9+
ms.date: 05/13/2020
1010
ms.author: tapanm
1111
ms.reviewer:
1212
---
@@ -193,5 +193,6 @@ Customizers can now use the [powerbi](../liquid/portals-entity-tags.md#powerbi)
193193

194194
### See also
195195

196-
[powerbi Liquid tag](../liquid/portals-entity-tags.md#powerbi)<br>
197-
[Add a Power BI report or dashboard to a webpage in portal](add-powerbi-report.md)
196+
- [Add a Power BI component to a webpage using the portals Studio](../compose-page.md#add-power-bi)
197+
- [Add a Power BI report or dashboard to a webpage using liquid tag in portal](add-powerbi-report.md)
198+
- [powerbi Liquid tag](../liquid/portals-entity-tags.md#powerbi)

0 commit comments

Comments
 (0)