Skip to content

Commit 210d061

Browse files
authored
Live publish
2 parents c2d7fd0 + 3a2b7a7 commit 210d061

File tree

6 files changed

+10
-85
lines changed

6 files changed

+10
-85
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/data-platform/best-practices/business-logic/remove-unsupported-code-using-reflection-workflow-activities.md",
5+
"redirect_url": "../data-platform/best-practices/business-logic/",
6+
"redirect_document_id": false
7+
},
38
{
49
"source_path": "powerapps-docs/developer/data-platform/audit-user-access.md",
510
"redirect_url": "../data-platform/auditing/overview",

powerapps-docs/developer/data-platform/best-practices/TOC.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
href: business-logic/manage-plug-ins-single-solution.md
2323
- name: Optimize custom assembly development
2424
href: business-logic/optimize-assembly-development.md
25-
- name: Remove unsupported code that uses reflection in custom workflow activities
26-
href: business-logic/remove-unsupported-code-using-reflection-workflow-activities.md
2725
- name: Set KeepAlive to false when interacting with external hosts in a plug-in
2826
href: business-logic/set-keepalive-false-interacting-external-hosts-plugin.md
2927
- name: Set Timeout when making external calls in a plug-in

powerapps-docs/developer/data-platform/best-practices/business-logic/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ This list below contains all of the guidance and best practices regarding the pl
3939
|[Limit the registration of plug-ins for Retrieve and RetrieveMultiple messages](limit-registration-plugins-retrieve-retrievemultiple.md) |Adding synchronous plug-in logic to the Retrieve and RetrieveMultiple message events can cause slowness. |
4040
|[Manage plug-ins in single solution](manage-plug-ins-single-solution.md)|The definition of a plug-in assembly should be maintained within a single solution. |
4141
|[Optimize custom assembly development](optimize-assembly-development.md) |Consider merging separate plug-ins/custom workflow activities into a single custom assembly to improve performance and maintainability and move plug-ins/custom workflow activities into multiple custom assemblies if an assembly size is near the sandbox assembly size constraints. |
42-
|[Remove unsupported code that uses reflection in custom workflow activities](remove-unsupported-code-using-reflection-workflow-activities.md)|Workflow activities containing unsupported code that uses reflection will break in the coming months unless it is removed.|
4342
|[Set KeepAlive to false when interacting with external hosts in a plug-in](set-keepalive-false-interacting-external-hosts-plugin.md) |KeepAlive property set to true in the HTTP request header or not explicitly defined as false can cause increased execution times of plug-ins. |
4443
|[Set Timeout when making external calls in a plug-in](set-timeout-for-external-calls-from-plug-ins.md) |Limit the time period that external calls will expect a response within plug-ins.|
4544
|[Use InvalidPluginExecutionException in plug-ins and workflow activities](use-invalidpluginexecutionexception-plugin-workflow-activities.md) |Use InvalidPluginExecutionException when raising errors within the context of a plug-in or workflow activity. |

powerapps-docs/developer/data-platform/best-practices/business-logic/remove-unsupported-code-using-reflection-workflow-activities.md

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

powerapps-docs/developer/data-platform/reference/entities/workflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Set of logical rules that define the steps necessary to automate a specific busi
3333
|Delete|DELETE [*org URI*]/api/data/v9.0/workflows(*workflowid*)<br />See [Delete](/powerapps/developer/common-data-service/webapi/update-delete-entities-using-web-api#basic-delete)|<xref:Microsoft.Xrm.Sdk.Messages.DeleteRequest> or <br /><xref:Microsoft.Xrm.Sdk.IOrganizationService.Delete*>|
3434
|ExecuteWorkflow|<xref href="Microsoft.Dynamics.CRM.ExecuteWorkflow?text=ExecuteWorkflow Action" />|<xref:Microsoft.Crm.Sdk.Messages.ExecuteWorkflowRequest>|
3535
|GrantAccess|<xref href="Microsoft.Dynamics.CRM.GrantAccess?text=GrantAccess Action" />|<xref:Microsoft.Crm.Sdk.Messages.GrantAccessRequest>|
36-
|InitializeModernFlowFromAsyncWorkflow|<xref href="Microsoft.Dynamics.CRM.InitializeModernFlowFromAsyncWorkflow?text=InitializeModernFlowFromAsyncWorkflow Action" />|<xref:Microsoft.Crm.Sdk.Messages.InitializeModernFlowFromAsyncWorkflowRequest>|
36+
|InitializeModernFlowFromAsyncWorkflow||<xref:Microsoft.Crm.Sdk.Messages.InitializeModernFlowFromAsyncWorkflowRequest>|
3737
|install|<xref href="Microsoft.Dynamics.CRM.install?text=install Action" />|Type generated by CrmSvcUtil.exe or use <xref:Microsoft.Xrm.Sdk.OrganizationRequest> setting the required parameters for the message.|
3838
|ModifyAccess|<xref href="Microsoft.Dynamics.CRM.ModifyAccess?text=ModifyAccess Action" />|<xref:Microsoft.Crm.Sdk.Messages.ModifyAccessRequest>|
3939
|Retrieve|GET [*org URI*]/api/data/v9.0/workflows(*workflowid*)<br />See [Retrieve](/powerapps/developer/common-data-service/webapi/retrieve-entity-using-web-api)|<xref:Microsoft.Xrm.Sdk.Messages.RetrieveRequest> or <br /><xref:Microsoft.Xrm.Sdk.IOrganizationService.Retrieve*>|
@@ -1997,4 +1997,4 @@ See the [botcomponent_workflow](botcomponent.md#BKMK_botcomponent_workflow) many
19971997

19981998
[About the table reference](../about-entity-reference.md)<br />
19991999
[Web API Reference](/dynamics365/customer-engagement/web-api/about)<br />
2000-
<xref href="Microsoft.Dynamics.CRM.workflow?text=workflow EntityType" />
2000+
<xref href="Microsoft.Dynamics.CRM.workflow?text=workflow EntityType" />

powerapps-docs/developer/model-driven-apps/clientapi/reference/attributes/getValue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Retrieves the data value for a column.
44
ms.author: jdaly
55
author: adrianorth
66
manager: kvivek
7-
ms.date: 03/12/2022
7+
ms.date: 06/09/2022
88
ms.reviewer: jdaly
99
ms.topic: "reference"
1010
applies_to: "Dynamics 365 (online)"
@@ -31,14 +31,14 @@ All
3131

3232
## Return Value
3333

34-
**Type**: Depends on the type of column.
34+
**Type**: Depends on the type of column. The value may be null.
3535

3636
[!INCLUDE[cc-terminology](../../../../data-platform/includes/cc-terminology.md)]
3737

3838
| Column Type | Return Type|
3939
|----|-----|
4040
| boolean | [Boolean](https://msdn.microsoft.com/library/t7bkhaz6.aspx) |
41-
| datetime| [Date](https://msdn.microsoft.com/library/cd9w2te4.aspx)<br/> To get the string version of a date using the Power Apps users locale preferences, use the [format](/previous-versions/bb384009(v=vs.140)) and [localeFormat](/previous-versions/bb383816(v=vs.140)) methods. Other methods will format dates using the operating system locale rather than the users Power Apps locale preferences. |
41+
| datetime| [Date](https://msdn.microsoft.com/library/cd9w2te4.aspx)<br/> To get the string version of a date using the Power Apps user's locale preferences, use the [format](/previous-versions/bb384009(v=vs.140)) and [localeFormat](/previous-versions/bb383816(v=vs.140)) methods. Other methods will format dates using the operating system locale rather than the user's Power Apps locale preferences. |
4242
| decimal| [Number](https://msdn.microsoft.com/library/dwab3ed2.aspx)|
4343
| Double | [Number](https://msdn.microsoft.com/library/dwab3ed2.aspx)|
4444
| integer | [Number](https://msdn.microsoft.com/library/dwab3ed2.aspx)|

0 commit comments

Comments
 (0)