Skip to content

Commit 735061e

Browse files
authored
Merge pull request #4907 from MicrosoftDocs/jdaly-master-fix-2527
Jdaly master fix 2527
2 parents 0fea6ad + fea0021 commit 735061e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

powerapps-docs/developer/data-platform/catalog-catalogassignment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Catalog and CatalogAssignment tables (Microsoft Dataverse) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "Learn how to use the Catalog and CatalogAssignment tables to expose events in your solution"
44
ms.custom: ""
5-
ms.date: 07/06/2021
5+
ms.date: 07/12/2021
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -251,13 +251,13 @@ GET [Organization URI]/api/data/v9.2/customapis?$select=customapiid&$filter=uniq
251251
This is most easily done using the Web API. The following example will return the `workflowid` of a custom process action with the `uniquename` of `ExampleCustomProcessAction`.
252252

253253
```http
254-
GET [Organization URI]/api/data/v9.2/workflows?$select=workflowid,uniquename&$filter=category eq 3 and type eq 2 and endswith(uniquename,'ExampleCustomProcessAction')
254+
GET [Organization URI]/api/data/v9.2/workflows?$select=workflowid,uniquename&$filter=category eq 3 and type eq 1 and endswith(uniquename,'ExampleCustomProcessAction')
255255
```
256256

257257
> [!NOTE]
258258
> The `uniquename` of the workflow doesn't include the customization prefix that is prepended to the name of the custom process action in the Web API. If the action you call from the Web API is named `new_ExampleCustomProcessAction`, the workflow uniquename will be `ExampleCustomProcessAction`.
259259
>
260-
> Make sure you to access the row where [Type](/powerapps/developer/data-platform/reference/entities/workflow#BKMK_Type) is `2`. This is the activated workflow.
260+
> Make sure you to access the row where [Type](/powerapps/developer/data-platform/reference/entities/workflow#BKMK_Type) is `1`. This is the workflow definition.
261261
>
262262
> Custom process action workflows have the [Category](/powerapps/developer/data-platform/reference/entities/workflow#BKMK_Category) value of `3`.
263263

powerapps-docs/developer/data-platform/troubleshoot-plug-in.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Troubleshoot plug-ins (Microsoft Dataverse for Apps) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "Learn what plug-in errors can occur and how to fix them." # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 03/16/2021
5+
ms.date: 07/12/2021
66
ms.reviewer: "pehecke"
77
ms.service: "powerapps"
88
ms.topic: "article"
@@ -24,7 +24,7 @@ This topic contains information about errors that can occur due to plug-in execu
2424
## Error: No Sandbox Worker processes are currently available
2525

2626
Error Code: `-2147204723`<br />
27-
Error Message: `The plug-in execution failed because no Sandbox Worker processes are currently available. Please try again.`
27+
Error Message: `The plug-in execution failed because no Sandbox Hosts are currently available.`
2828

2929
This error simply means that the worker process running your plug-in code crashed. The reason it crashed may be your plug-in, but it could also be another plug-in running concurrently for your organization. Because the process crashed, we can’t extract any more specific information about why it crashed. But after examining data from the crash dumps after the fact, we have found that this usually happens for one of the 4 reasons below:
3030

0 commit comments

Comments
 (0)