You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/bulk-operations.md
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -396,9 +396,6 @@ A key requirement of the bulk operation messages is that organizations must not
396
396
397
397
- When a single operation message is used, the respective bulk operation event occurs with an [EntityCollection](xref:Microsoft.Xrm.Sdk.EntityCollection) containing a *single*[Entity](xref:Microsoft.Xrm.Sdk.Entity) instance passed in the `Targets` parameter. You can move any logic that responds to single operation events to the more efficient bulk operation events and the logic is applied for both individual and multiple operations.
398
398
399
-
> [!NOTE]
400
-
> Don't migrate custom logic to the `DeleteMultiple` message until [Known issue: DeleteMultiple plug-ins not invoked for Delete](deletemultiple.md#deletemultiple-plug-ins-not-invoked-for-delete) is resolved.
401
-
402
399
Before the introduction of bulk operation messages, all custom logic was on the single operation messages. That logic must continue to be applied when client applications use the bulk operation messages. For tables used with high-volume bulk operations, we recommend that you begin to move any synchronous logic from single message events to bulk operation events. If you're introducing new logic, use the bulk operation events rather than the single operation events.
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/deletemultiple.md
+1-11Lines changed: 1 addition & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Use DeleteMultiple (preview)
3
3
description: Learn how to use Delete to delete multiple rows of data in a Microsoft Dataverse elastic table.
4
-
ms.date: 11/13/2023
4
+
ms.date: 11/15/2023
5
5
author: pnghub
6
6
ms.author: gned
7
7
ms.reviewer: jdaly
@@ -120,16 +120,6 @@ OData-Version: 4.0
120
120
121
121
`DeleteMultiple` is supported only for elastic tables. Elastic tables don't support [table relationship cascading behavior](configure-entity-relationship-cascading-behavior.md), which can result in unpredictable execution times for delete operations. If you use `DeleteMultiple` on a standard table, you get the error: `DeleteMultiple has not yet been implemented.`
122
122
123
-
## Known issues
124
-
125
-
The following issues will be addressed before `DeleteMultiple` becomes generally available.
126
-
127
-
### DeleteMultiple plug-ins not invoked for Delete
128
-
129
-
As part of the changes we made to [merge message pipelines](bulk-operations.md#message-pipelines-merged), any custom logic for the multiple version of the message must also be invoked when the single version of the message is invoked. At this time, plug-in steps registered for the `DeleteMultiple` message *are not* being called when `Delete` is used. Plug-in steps registered for `Delete`*are* being invoked when `DeleteMultiple` is used.
130
-
131
-
You shouldn't migrate custom logic from `Delete` to `DeleteMultiple` until this issue is resolved. You can use `DeleteMultiple` and any logic that's associated with the `Delete` message still works.
Copy file name to clipboardExpand all lines: powerapps-docs/mobile/mobile-deep-links.md
+27-24Lines changed: 27 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: How to configure deep links for Power Apps mobile.
4
4
author: trdehove
5
5
ms.component: pa-user
6
6
ms.topic: quickstart
7
-
ms.date: 11/10/2023
7
+
ms.date: 11/16/2023
8
8
ms.subservice: mobile
9
9
ms.author: trdehove
10
10
ms.custom: ""
@@ -15,7 +15,8 @@ search.audienceType:
15
15
searchScope:
16
16
- "Power Apps"
17
17
contributors:
18
-
- anuitz
18
+
- anuitz
19
+
- sitarampemmaraju
19
20
---
20
21
21
22
# Use deep links with the Power Apps mobile app
@@ -24,65 +25,67 @@ Deep links let users move from one application to another on computers and mobil
24
25
25
26
## Supported deep links in the Power Apps mobile app
26
27
27
-
You can open an `entityrecord` or an `entitylist` view in Power Apps mobile by using deep-link URLs from other apps. When you follow the link from an external app, the target element opens in Power Apps mobile
28
+
You can open an `entityrecord` or an `entitylist` view in the Power Apps mobile app by using deep-link URLs from other apps. When you follow the link from an external app, the target element opens in Power Apps mobile
28
29
29
-
If you're already signed in to your instance in the app, the target record is displayed when you follow the link from an external app. Otherwise, you're prompted to sign in to your instance in the mobile app; after you're signed in, the target element is displayed. You must have Power Apps mobile installed on your mobile device to use this feature.
30
+
If you're already signed in to your instance in the app, the target record is displayed when you follow the link from an external app. Otherwise, you're prompted to sign in to your instance in the mobile app; after you're signed in, the target element is displayed. You must have the Power Apps mobile app installed on your mobile device to use this feature.
30
31
31
32
## Supported Urls parameters for a model-driven app
32
33
33
34
Use the following application handler and query string parameters to compose the URL.
34
35
35
-
Deep links for Power Apps mobile should start with the following:
36
+
Deep links for the Power Apps mobile app should start with the following:
|<targeted-app>| <ul><li>`ms-dynamicsxrm` -> Dynamics 365 for phones</li><li> `ms-apps-fs` -> Field Service</li><li>`ms-apps` -> Power Apps</li><li>`ms-mobile-apps` -> wrapped native mobile apps</li> |
42
-
|<org-url>| Connects to the correct org URL |
43
-
|<app-id>| Opens the correct app module |
44
-
| tenantId | Connects to the correct tenant |
45
-
| forceOfflineDataSync | Ensures that data sync is triggered so that all the latest data is available |
43
+
|<org-url>| Connects to the correct org URL.|
44
+
|<app-id>| Opens the correct app module.|
45
+
| tenantId | Connects to the correct tenant.|
46
+
| forceOfflineDataSync | Ensures that data sync is triggered so that all the latest data is available.|
46
47
47
48
48
49
If opening an `entityrecord` form or creating a new `entityrecord`, use the following parameters:
| etn=<entity-logical-name>| Designates which table to go to |
53
-
| pagetype=entityrecord | Indicates that the target is a form |
54
-
| extraqs=<form-id>| Designates which form to open for the `entityrecord`; if not specified, the default form will open. The `extraqs` parameter can also be used to default field values. |
55
-
| id=<record-id>| Designates which specific record to go to; if left blank, the create form for the table will open|
53
+
| etn=<entity-logical-name>| Designates which table to go to.|
54
+
| pagetype=entityrecord | Indicates that the target is a form.|
55
+
| extraqs=<form-id>| Designates which form to open for the `entityrecord`; if not specified, the default form opens. The `extraqs` parameter can also be used to default field values. |
56
+
| id=<record-id>| Designates which specific record to go to; if left blank, the create form for the table opens.|
56
57
57
58
If the link goes to an `entitylist` view, add the following parameters:
|<tenantId>| Connects to the correct tenant|
84
+
|<app-id>| Opens the correct app module.|
85
+
|<tenantId>| Connects to the correct tenant.|
84
86
| restartApp=true | Restarts the canvas app to ensure parameters are passed when the app is already open. |
85
-
87
+
| autoLoginUpn=<e-mail>| Autopopulates e-mail and triggers sign-in. |
88
+
86
89
## Troubleshooting
87
90
88
91
Deeplinks may open in your browser depending on the company's organizational policies and the user's device settings. Mobile Device Management (MDM) tools and device operating systems have different options and settings that impact how deeplinks are handled. If deeplinks are opening in a browser instead of directly in Power Apps mobile, make sure your MDM policies and device settings are appropriately configured.
0 commit comments