Skip to content

Commit 198f093

Browse files
committed
Deprecate SOQLQuery
1 parent 09f2a45 commit 198f093

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/data-factory/connector-salesforce.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: data-factory
88
ms.subservice: data-movement
99
ms.topic: conceptual
1010
ms.custom: synapse
11-
ms.date: 06/25/2024
11+
ms.date: 07/11/2024
1212
---
1313

1414
# Copy data from and to Salesforce using Azure Data Factory or Azure Synapse Analytics
@@ -210,8 +210,8 @@ To copy data from and to Salesforce, set the type property of the dataset to **S
210210
| Property | Description | Required |
211211
|:--- |:--- |:--- |
212212
| type | The type property must be set to **SalesforceV2Object**. | Yes |
213-
| objectApiName | The Salesforce object name to retrieve data from. | No for source (if "SOQLQuery" in source is specified), Yes for sink |
214-
| reportId | The ID of the Salesforce report to retrieve data from. It isn't supported in sink. There are [limitations](https://developer.salesforce.com/docs/atlas.en-us.api_analytics.meta/api_analytics/sforce_analytics_rest_api_limits_limitations.htm) when you use reports. | No for source (if "SOQLQuery" in source is specified), not support sink |
213+
| objectApiName | The Salesforce object name to retrieve data from. | No for source (if "query" in source is specified), Yes for sink |
214+
| reportId | The ID of the Salesforce report to retrieve data from. It isn't supported in sink. There are [limitations](https://developer.salesforce.com/docs/atlas.en-us.api_analytics.meta/api_analytics/sforce_analytics_rest_api_limits_limitations.htm) when you use reports. | No for source (if "query" in source is specified), not support sink |
215215

216216
> [!IMPORTANT]
217217
> The "__c" part of **API Name** is needed for any custom object.
@@ -248,7 +248,7 @@ To copy data from Salesforce, set the source type in the copy activity to **Sale
248248
| Property | Description | Required |
249249
|:--- |:--- |:--- |
250250
| type | The type property of the copy activity source must be set to **SalesforceV2Source**. | Yes |
251-
| 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. For SOQL limitations, see this [article](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations). If query isn't specified, all the data of the Salesforce object specified in "ObjectApiName/reportId" in dataset is retrieved. | No (if "ObjectApiName/reportId" in the dataset is specified) |
251+
| query | 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. For SOQL limitations, see this [article](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations). If query isn't specified, all the data of the Salesforce object specified in "ObjectApiName/reportId" in dataset is retrieved. | No (if "ObjectApiName/reportId" in the dataset is specified) |
252252
| 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 |
253253

254254
> [!IMPORTANT]
@@ -278,7 +278,7 @@ To copy data from Salesforce, set the source type in the copy activity to **Sale
278278
"typeProperties": {
279279
"source": {
280280
"type": "SalesforceV2Source",
281-
"SOQLQuery": "SELECT Col_Currency__c, Col_Date__c, Col_Email__c FROM AllDataType__c",
281+
"query": "SELECT Col_Currency__c, Col_Date__c, Col_Email__c FROM AllDataType__c",
282282
"includeDeletedObjects": false
283283
},
284284
"sink": {

0 commit comments

Comments
 (0)