Skip to content

Commit 3ca7e17

Browse files
authored
Live publish
2 parents c63cf66 + f5e60b1 commit 3ca7e17

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

powerapps-docs/developer/common-data-service/use-change-tracking-synchronize-data-external-systems.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Use change tracking to synchronize data with external systems (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "The change tracking feature provides a way to keep the data synchronized in an efficient manner by detecting what data has changed since the data was initially extracted or last synchronized" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 10/31/2018
5+
ms.date: 09/01/2020
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -128,7 +128,7 @@ System query options `$filter`, `$orderby` and `$top` are not supported when usi
128128

129129
<a name="BKMK_SampleCode"></a>
130130
## Sample code
131-
The following code snippet shows how the `RetrieveEntityChangesRequest` message is used to retrieve the changes for an entity. For the complete sample, see [Synchronize data with external systems using change tracking](https://go.microsoft.com/fwlink/p/?LinkId=533957).
131+
The following code snippet shows how the `RetrieveEntityChangesRequest` message is used to retrieve the changes for an entity. For the complete sample, see [Synchronize data with external systems using change tracking](https://github.com/microsoft/PowerApps-Samples/tree/master/cds/orgsvc/C%23/Changetracking).
132132

133133
```csharp
134134
string token;

powerapps-docs/developer/common-data-service/xrm-tooling/use-connection-strings-xrm-tooling-connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Create a new connection to Common Data Service using the current logged in user
131131
Url=https://contosotest.crm.dynamics.com;
132132
AppId=51f81489-12ee-4a9e-aaae-a2591f45987d;
133133
RedirectUri=app://58145B91-0C36-4500-8554-080854F2AC97;
134-
TokenCacheStorePath=c:\MyTokenCache;
134+
TokenCacheStorePath=c:\MyTokenCache\msal_cache.data;
135135
LoginPrompt=Auto"/>
136136
```
137137

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-data-process/activeprocess/setActiveProcess.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If there is an active instance of the process, the entity record is loaded with
3030

3131
|Name|Type|Required|Description|
3232
|--|--|--|--|
33-
|processInstanceId|String|Yes|The Id of the process to set as the active process.|
33+
|processId|String|Yes|The Id of the process to set as the active process.|
3434
|callbackFunction|Function|No|A function to call when the operation is complete. This callback function is passed one of the following string values to indicate whether the operation succeeded:<br/>- **success**: The operation succeeded.<br/>- **invalid**: The processId isn’t valid or the process isn’t enabled.|
3535

3636
### Related topics

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-data/save.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ You can also set an object to control how appointment, recurring appointment, or
3333
|successCallback|Function|No|A function to call when the operation succeeds.|
3434
|errorCallback|Function|No|A function to call when the operation fails. An object with the following properties will be passed:<br/><br/>- **errorCode**: Number. The error code.<br/><br/>- **message**: String. A localized error message.|
3535

36+
[!NOTE]
37+
> When working with forms, and you call the `formContext.data.save` method, make sure that you also call the [preventDefault](../save-event-arguments/preventDefault.md) to ensure that any default save operation is not triggered when a user saves the form.
38+
3639

3740
### Related topics
3841

0 commit comments

Comments
 (0)