cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Intregate salesforce data with SAP using databricks

former_member833795
Discoverer
0 Likes
1,041

Hi,

I have a requirement to pull the salesforce data (IDOC) using Databricks and push to SAP . May i know if anyone has done this so far. If so, i need inputs on how to connnect to salesforce data using databricks and how to push the data to SAP.

Thanks,

Niranjan.

Accepted Solutions (0)

Answers (3)

Answers (3)

dominik_jacobs
Participant
0 Likes

There are several steps involved in connecting to Salesforce data using Databricks and pushing the data to SAP. Here is an overview of the process:

  • Connect to Salesforce using the Salesforce Connector for Databricks. This connector allows you to read data from Salesforce objects and tables, and it can be configured using the connection settings for your Salesforce instance.
  • Once you have connected to Salesforce, you can use Databricks to extract the data that you need. This can be done using SQL queries or by using the Salesforce API (Just check the Salesforce API for more informations). Also you can create a python program with the Salesforce Objects :
# Define the Salesforce object and fields you want to extract
object_name = 'Account'
fields = ['Id', 'Name', 'Industry', 'AnnualRevenue']
# Execute a query to extract the data
query = f"SELECT {', '.join(fields)} FROM {object_name}"
results = sf.query_all(query)
  • Once the data is extracted, you can perform any necessary transformations or cleaning using Databricks.
  • To push the data to SAP(HANA), you can use a variety of methods, such as using the SAP Data Intelligence API to write the data directly to SAP(HANA), using Data Pipelines to move the data from Databricks to SAP or using a middleware solution like Dell Boomi, Mulesoft, etc.
  • You can also use the SAP HANA Connector for Databricks to write data to SAP HANA, it allows you to read and write data from Databricks to SAP HANA and vice versa.

Once the data is in SAP, you can use the standard SAP tools and processes to work with the data, such as creating reports, dashboards, and data models.

BR

Dom

Neeraj_Jain1
Active Contributor
0 Likes

Hello 9900869730,

Please refer below SAP Blog. Might be it's helps to you.

https://blogs.sap.com/2013/03/22/integration-of-sap-hana-with-salesforcecom/

Regards,

Neeraj Jain

Neeraj_Jain1
Active Contributor
0 Likes

Hello 9900869730,

Please refer below SAP Blog. Might be it's helps to you.

https://blogs.sap.com/2013/03/22/integration-of-sap-hana-with-salesforcecom/

Regards,

Neeraj Jain

former_member833795
Discoverer
0 Likes

I would like to do it using Databricks . Please let me know if it is feasible.