Sales Force 6.x

Configuring the lookup source and establishing the mapping relations – Docs for ESB 6.x

Configuring the lookup source and establishing the mapping relations Double-click the tSalesforceInput component to open its Basic settings view. In the User Id, Password and Security Key fields, enter the user authentication information required to access Salesforce. Click the […] button next to the Module Name field and in the pop-up dialog box, select the…

tSalesforceBulkExec – Docs for ESB 6.x

tSalesforceBulkExec Gains in performance while carrying out the intended data operations into your Salesforce.com. The tSalesforceOutputBulk and tSalesforceBulkExec components are used together in a two step process. In the first step, an output file is generated. In the second step, this file is used to feed the Salesforce database. These two steps are fused together…

Scenario: Using OAuth2 to log in to Salesforce.com – Docs for ESB 6.x

Scenario: Using OAuth2 to log in to Salesforce.com In this scenario, the OAuth2 (Open Authorization 2.0) method is adopted to authorize tSalesforceConnection to access the Salesforce.com resources. This way, better security is achieved as users do not need entering their Salesforce username/password directly on tSalesforceConnection, which is required by the Basic login type instead. Document…

Setting up the connection to Salesforce – Docs for ESB 6.x

Setting up the connection to Salesforce Double-click the tSalesforceOutputBulkExec component to open its Basic settings view. In the User Id, Password and Security Key fields, enter the user authentication information required to access Salesforce. Click the […] button next to the Module Name field and in the pop-up dialog box, select the object you want…

Connecting to Salesforce – Docs for ESB 6.x

Connecting to Salesforce Double-click the tSalesforceConnection component to open its Basic settings view. In the User Id, Password and Security Key fields, enter the user authentication information required to access Salesforce. Document get from Talend https://help.talend.com Thank you for watching.

Inserting the external ID values into the Account object – Docs for ESB 6.x

Inserting the external ID values into the Account object Double-click the first tFixedFlowInput component to open its Basic settings view. Click the […] button next to Edit schema and in the pop-up schema dialog box, define the schema by adding three columns Name, AccountID__c and AccountBizLicense__c of String type. Note that AccountID__c and AccountBizLicense__c are…

Loading data into Salesforce from the file – Docs for ESB 6.x

Loading data into Salesforce from the file Double-click the tSalesforceBulkExec component to open its Basic settings view. In the User Id, Password and Security Key fields, enter the user authentication information required to access Salesforce. Click the […] button next to the Module Name field and in the pop-up dialog box, select the object you…

How to set schema for generating the simple query – Docs for ESB 6.x

How to set schema for generating the simple query This section demonstrates how to set the module name and schema columns for generating the simple query. The following two simple query examples will be used for demonstration purpose in the following steps. SELECT Id, Name, BillingCity FROM Account, a simple query with standard object and…

How to set schema for generating the parent-to-child relationship query – Docs for ESB 6.x

How to set schema for generating the parent-to-child relationship query This section demonstrates how to set the module name and schema columns for generating a parent-to-child relationship query. The following two parent-to-child relationship query examples will be used for demonstration purpose in the following steps. SELECT Name, Owner.Name (SELECT CreatedBy.Name FROM Notes) FROM Account, a…

How to set schema for generating the child-to-parent relationship query – Docs for ESB 6.x

How to set schema for generating the child-to-parent relationship query This section demonstrates how to set the module name and schema columns for generating a child-to-parent relationship query. The following two child-to-parent relationship query examples will be used for demonstration purpose in the following steps. SELECT Name, Account.Name, Account.Owner.Name FROM Contact, a child-to-parent relationship query…