Skip to content

Commit c6ed2a8

Browse files
authored
Merge branch 'main' into users/cotaylor/add-cards-alm-docs
2 parents 30de296 + 399d7c7 commit c6ed2a8

File tree

10 files changed

+27
-219
lines changed

10 files changed

+27
-219
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8710,6 +8710,11 @@
87108710
"redirect_url": "/power-pages/templates/dynamics-365-apps/overview",
87118711
"redirect_document_id": false
87128712
},
8713+
{
8714+
"source_path": "powerapps-docs/maker/portals/configure/dataverse-search.md",
8715+
"redirect_url": "/power-pages/configure/search/overview",
8716+
"redirect_document_id": false
8717+
},
87138718
{
87148719
"source_path": "powerapps-docs/maker/portals/create-common-problems.md",
87158720
"redirect_url": "/power-pages/getting-started/create-manage",

powerapps-docs/developer/data-platform/aad-group-team.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Work with Azure Active Directory group teams (Dataverse)| Microsoft Docs"
33
description: "Learn about working with an Azure Active Directory group team using the Web API."
44
ms.custom: ""
5-
ms.date: 02/15/2022
5+
ms.date: 09/21/2023
66

77
ms.suite: ""
88
ms.tgt_pltfrm: ""
@@ -246,6 +246,10 @@ If you have a non-interactive process where your service needs to check if the u
246246

247247
More information: [Impersonate another user](impersonate-another-user.md)
248248

249+
## Triggering an event when a team member is added or removed from the group team
250+
251+
Group members are added or removed [just-in-time](#just-in-time-updates) into the Dataverse group team using the [associate and disassociate APIs](webapi/associate-disassociate-entities-using-web-api.md). You can register a [plug-in](plug-ins.md) on the event triggered by these team member additions or removals from the group team.
252+
249253
### See also
250254

251255
[Manage app and resource access using Azure Active Directory groups](/azure/active-directory/fundamentals/active-directory-manage-groups)

powerapps-docs/developer/data-platform/org-service/page-large-result-sets-with-fetchxml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can page the results of a FetchXML query by using the paging cookie. The pag
1818

1919
FetchXML and <xref:Microsoft.Xrm.Sdk.Query.QueryExpression> use different formats for their paging cookies. If you convert from one query format to the other by using the <xref:Microsoft.Crm.Sdk.Messages.FetchXmlToQueryExpressionRequest> message or the <xref:Microsoft.Crm.Sdk.Messages.QueryExpressionToFetchXmlRequest> message, the paging cookie value is ignored. In addition, if you request nonconsecutive pages, the paging cookie value is ignored.
2020

21-
When you use the paging cookie with FetchXML, make sure that you use the correct encoding. The following example shows the correct encoding when using the paging cookie with FetchXML:
21+
When you use the paging cookie with FetchXML, you must XML encode the cookie value. The following example shows what the XML encoded cookie looks like when using the paging cookie with FetchXML:
2222

2323
```csharp
2424
strQueryXML = @"

powerapps-docs/developer/data-platform/user-team-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ User and team management is the area of Microsoft Dataverse where you can create
5050

5151
To find the user who is currently logged on or who is impersonated, call the <xref:Microsoft.Crm.Sdk.Messages.WhoAmIRequest> message.
5252

53-
### Delete a user (preview)
53+
### Delete a user
5454

5555
In Dataverse, users can be disabled and deleted. You can delete a user from Power Platform (Dataverse) assuming you have the required access permission to the [SystemUser table](reference/entities/systemuser.md) row. There is a sequence of tasks to follow. You cannot simply delete the row in a single call. You must first delete the user registered in Microsoft Azure Active Directory (AD) and then delete the user in Dataverse. The procedure to follow is outlined below.
5656

powerapps-docs/developer/model-driven-apps/clientapi/send-in-app-notifications.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,12 +1119,13 @@ In addition to the appropriate table permissions, a user must be assigned the **
11191119
|Usage|Required table privileges|
11201120
|------------|----------------|
11211121
|User has no in-app notification bell and receives no in-app notification |None: Read privilege on the app notification table. |
1122-
|User can receive in-app notifications|<ul><li>Basic: Read privilege on the app notification table.</li><li>Create, Read, Write, and Append privileges on the model-driven app user setting.</li><li>Read privileges on setting definition.</li></ul> |
1122+
|User can receive in-app notifications|<ul><li>Basic: Read privilege on the app notification table.</li><li>Create, Read, Write, and Append privileges on the model-driven app user setting.</li><li>Read and AppendTo privileges on setting definition.</li></ul> |
11231123
|User can send in-app notifications to self |Basic: Create and Read privileges on the app notification table, and Send In-App Notification privilege. |
11241124
|User can send in-app notifications to others |Read privilege with Local, Deep, or Global access level on the app notification table based on the receiving user's business unit, and Send In-App Notification privilege. |
11251125
| User can delete in-app notifications | Global: Delete privileges on the app notification table. |
11261126

11271127

1128+
11281129
## Notification storage
11291130

11301131
Because the app notification table uses the organization's database storage capacity, it's important to consider the volume of notifications sent and the expiration setting. More information: [Microsoft Dataverse storage capacity](/power-platform/admin/capacity-storage)

powerapps-docs/developer/test-engine/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ $env:user1Password = "fake password"
8787

8888
### Run the test
8989

90-
Use the PAC CLI [pac tests run](/power-platform/developer/cli/reference/tests#pac-tests-run) command to run your test plan. You must provide:
90+
Use the PAC CLI [pac test run](/power-platform/developer/cli/reference/tests#pac-test-run) command to run your test plan. You must provide:
9191

9292
- Path to your test plan file
9393
- EnvironmentId

powerapps-docs/maker/canvas-apps/reference-properties.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ Configure the appearance and behavior of a control by setting one of its propert
6868

6969
**[HTML text](controls/control-html-text.md)** – Convert HTML tags automatically.
7070

71+
**[Horizontal container ](controls/control-horizontal-container.md)** – Determines the position of the child components so that you never have to set X, Y for a component inside the container.
72+
7173
**[Icon](controls/control-shapes-icons.md)** – Add graphic appeal and visual interest.
7274

7375
**[Image](controls/control-image.md)** – Show an image from, for example, a local file or a data source.
@@ -116,6 +118,8 @@ Configure the appearance and behavior of a control by setting one of its propert
116118

117119
**[Video](controls/control-audio-video.md)** – Play a video clip from a local file, a data source, or YouTube.
118120

121+
**[Vertical container ](controls/control-vertical-container.md)** – Determines the position of the child components so that you never have to set X, Y for a component inside the container.
122+
119123
**[3D object](mixed-reality-component-view-3d.md)** - Rotate and zoom into the model with simple gestures in 3D.
120124

121125
**[View in MR](mixed-reality-component-view-mr.md)** - See how a particular item might fit within a specified space in mixed reality.

powerapps-docs/maker/data-platform/display-custom-icons-instead.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ This example displays custom icons in a view for the opportunity table, which is
3232
> ![All Opportunities view with Rating column displaying icons and text value.](media/icon-in-opportunity-view.png "All Opportunities view with Rating column displaying icons and text value")
3333
3434
Custom icons in list views can display in Unified Interface, legacy web client, mobile app, and App for Outlook.
35+
36+
> [!NOTE]
37+
> Custom icons aren't available when the app is in mobile offline mode.
3538
3639
## Add custom graphics and JavaScript as web resources
3740

powerapps-docs/maker/portals/configure/dataverse-search.md

Lines changed: 0 additions & 211 deletions
This file was deleted.

powerapps-docs/mobile/offline-capabilities.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Mobile offline capabilities and limitations
33
description: Mobile offline capabilities and limitations for Power Apps and Dynamics 365 phones and tablets app
44
ms.custom:
5-
ms.date: 07/26/2023
5+
ms.date: 09/20/2023
66
ms.reviewer: sericks
77
ms.suite:
88
ms.tgt_pltfrm:
@@ -93,8 +93,10 @@ For more information, see [Run business process flows offline](/power-automate/b
9393

9494
- **Qualify a lead** - When a lead created in mobile offline is qualified and when the user goes online, the business process stage shows the qualify stage. The user has to manually select **Next stage** to move to the next stage.
9595

96-
- **Grids** - Column filtering is disabled when an offline profile is set up even when there's network connectivity. The grid works with the local database and doesn't support custom filters.
97-
96+
- **Grids**
97+
- Column filtering is disabled when an offline profile is set up even when there's network connectivity. The grid works with the local database and doesn't support custom filters.
98+
- Custom icons alongside values in grids aren't available for offline. For more information about this capability, go to [How to display custom icons](../maker/data-platform/display-custom-icons-instead.md).
99+
98100
- **Views** aren't supported for the following tables in offline mode:
99101

100102
- Email

0 commit comments

Comments
 (0)