Skip to content

Commit be0fc4f

Browse files
committed
remove includeDeletedObjects
1 parent 6c8b0ca commit be0fc4f

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

articles/data-factory/connector-salesforce-service-cloud.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ To copy data from Salesforce Service Cloud, set the source type in the copy acti
205205
|:--- |:--- |:--- |
206206
| type | The type property of the copy activity source must be set to **SalesforceServiceCloudV2Source**. | Yes |
207207
| SOQLQuery | Use the custom query to read data. You can only use [Salesforce Object Query Language (SOQL)](https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql.htm) query with [limitations](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations). If query is not specified, all the data of the Salesforce object specified in "ObjectApiName/reportId" in dataset will be retrieved. | No (if "ObjectApiName/reportId" in the dataset is specified) |
208-
| includeDeletedObjects | Indicates whether to query the existing records, or query all records including the deleted ones. If not specified, the default behavior is false. <br>Allowed values: **false** (default), **true**. | No |
209208

210209
> [!IMPORTANT]
211210
> The "__c" part of **API Name** is needed for any custom object.
@@ -234,8 +233,7 @@ To copy data from Salesforce Service Cloud, set the source type in the copy acti
234233
"typeProperties": {
235234
"source": {
236235
"type": "SalesforceServiceCloudV2Source",
237-
"SOQLQuery": "SELECT Col_Currency__c, Col_Date__c, Col_Email__c FROM AllDataType__c",
238-
"includeDeletedObjects": false
236+
"SOQLQuery": "SELECT Col_Currency__c, Col_Date__c, Col_Email__c FROM AllDataType__c"
239237
},
240238
"sink": {
241239
"type": "<sink type>"
@@ -336,7 +334,5 @@ Migrating your Salesforce Service Cloud linked service is highly recommended if
336334

337335
1. If you use SQL query in the copy activity source or the lookup activity that refers to the legacy linked service, you need to convert them to the SOQL query. Learn more about SOQL query from [Salesforce Service Cloud as a source type](connector-salesforce-service-cloud.md#salesforce-service-cloud-as-a-source-type) and [Salesforce Object Query Language (SOQL)](https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql.htm).
338336

339-
1. readBehavior is replaced with includeDeletedObjects in the copy activity source or the lookup activity. For the detailed configuration, see [Salesforce as a source type](connector-salesforce.md#salesforce-as-a-source-type).
340-
341337
## Related content
342338
For a list of data stores supported as sources and sinks by the copy activity, see [Supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).

articles/data-factory/connector-salesforce.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ To copy data from Salesforce, set the source type in the copy activity to **Sale
250250
|:--- |:--- |:--- |
251251
| type | The type property of the copy activity source must be set to **SalesforceV2Source**. | Yes |
252252
| SOQLQuery | Use the custom query to read data. You can only use [Salesforce Object Query Language (SOQL)](https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql.htm) query with [limitations](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations). If query is not specified, all the data of the Salesforce object specified in "ObjectApiName/reportId" in dataset will be retrieved. | No (if "ObjectApiName/reportId" in the dataset is specified) |
253-
| includeDeletedObjects | Indicates whether to query the existing records, or query all records including the deleted ones. If not specified, the default behavior is false. <br>Allowed values: **false** (default), **true**. | No |
254253

255254
> [!IMPORTANT]
256255
> The "__c" part of **API Name** is needed for any custom object.
@@ -279,8 +278,7 @@ To copy data from Salesforce, set the source type in the copy activity to **Sale
279278
"typeProperties": {
280279
"source": {
281280
"type": "SalesforceV2Source",
282-
"SOQLQuery": "SELECT Col_Currency__c, Col_Date__c, Col_Email__c FROM AllDataType__c",
283-
"includeDeletedObjects": false
281+
"SOQLQuery": "SELECT Col_Currency__c, Col_Date__c, Col_Email__c FROM AllDataType__c"
284282
},
285283
"sink": {
286284
"type": "<sink type>"
@@ -381,7 +379,5 @@ Migrating your Salesforce linked service is highly recommended if you use the le
381379

382380
1. If you use SQL query in the copy activity source or the lookup activity that refers to the legacy linked service, you need to convert them to the SOQL query. Learn more about SOQL query from [Salesforce as a source type](connector-salesforce.md#salesforce-as-a-source-type) and [Salesforce Object Query Language (SOQL)](https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql.htm).
383381

384-
1. readBehavior is replaced with includeDeletedObjects in the copy activity source or the lookup activity. For the detailed configuration, see [Salesforce as a source type](connector-salesforce.md#salesforce-as-a-source-type).
385-
386382
## Related content
387383
For a list of data stores supported as sources and sinks by the copy activity, see [Supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).

0 commit comments

Comments
 (0)