![]() |
VOOZH | about |
Start querying live data from SAP using the CData Python Connector for SAP ERP. Leverage the power of AI with LlamaIndex and retrieve insights using simple English, eliminating the need for complex SQL queries. Benefit from real-time data access that enhances your decision-making process, while easily integrating with your existing Python applications.
With built-in, optimized data processing, the CData Python Connector offers unmatched performance for interacting with live SAP data in Python. When you issue complex SQL queries from Python, the driver pushes supported SQL operations, like filters and aggregations, directly to SAP and utilizes the embedded SQL engine to process unsupported operations client-side (often SQL functions and JOIN operations).
Whether you're analyzing trends, generating reports, or visualizing data, our Python connectors enable you to harness the full potential of your live data source with ease.
CData provides the easiest way to access and integrate live data from SAP. Customers use CData connectivity to:
While most users leverage our tools to replicate SAP data to databases or data warehouses, many also integrate live SAP data with analytics tools such as Tableau, Power BI, and Excel.
Here's how to query live data with CData's Python connector for SAP data using LlamaIndex:
Import the necessary modules CData, database connections, and natural language querying.
import os import logging import sys # Configure logging logging.basicConfig(stream=sys.stdout, level=logging.INFO, force=True) logging.getLogger().addHandler(logging.StreamHandler(stream=sys.stdout)) # Import required modules for CData and LlamaIndex import cdata.saperp as mod from sqlalchemy import create_engine from llama_index.core.query_engine import NLSQLTableQueryEngine from llama_index.core import SQLDatabase from llama_index.llms.openai import OpenAI
To use OpenAI's language model, you need to set your API key as an environment variable. Make sure you have your OpenAI API key available in your system's environment variables.
# Retrieve the OpenAI API key from the environment variables OPENAI_API_KEY = os.environ["OPENAI_API_KEY"] ''as an alternative, you can also add your API key directly within your code (though this method is not recommended for production environments due to security risks):'' # Directly set the API key (not recommended for production use) OPENAI_API_KEY = "your-api-key-here"
Next, establish a connection to SAP using the CData connector using a connection string with the required connection properties.
You can connect to SAP systems using either librfc32.dll, librfc32u.dll, NetWeaver, or Web Services (SOAP). Set the ConnectionType connection property to CLASSIC (librfc32.dll), CLASSIC_UNICODE (librfc32u.dll), NETWEAVER, or SOAP.
If you are using the SOAP interface, set the Client, RFCUrl, SystemNumber, User, and Password properties, under the Authentication section.
Otherwise, set Host, User, Password, Client, and SystemNumber.
Note: We do not distribute the librfc32.dll or other SAP assemblies. You must find them from your SAP installation and install them on your machine.
For more information, see this guide on obtaining the connection properties needed to connect to any SAP system.
# Create a database engine using the CData Python Connector for SAP ERP
engine = create_engine("cdata_saperp_2:///?User=Host=sap.mydomain.com;User=EXT90033;Password=xxx;Client=800;System Number=09;ConnectionType=Classic;Location=C:/mysapschemafolder;")
Create an instance of the OpenAI language model. Here, you can specify parameters like temperature and the model version.
# Initialize the OpenAI language model instance llm = OpenAI(temperature=0.0, model="gpt-3.5-turbo")
Now, set up the SQL database and the query engine. The NLSQLTableQueryEngine allows you to perform natural language queries against your SQL database.
# Create a SQL database instance sql_db = SQLDatabase(engine) # This includes all tables # Initialize the query engine for natural language SQL queries query_engine = NLSQLTableQueryEngine(sql_database=sql_db)
Now, you can execute a natural language query against your live data source. In this example, we will query for the top two earning employees.
# Define your query string query_str = "Who are the top earning employees?" # Get the response from the query engine response = query_engine.query(query_str) # Print the response print(response)
Download a free, 30-day trial of the CData Python Connector for SAP ERP and start querying your live data seamlessly. Experience the power of natural language processing and unlock valuable insights from your data today.
Download a Community License of the SAP ERP Connector to get started:
Download NowLearn more:
👁 SAP ERP IconPython Connector Libraries for SAP ERP Data Connectivity. Integrate SAP ERP with popular Python tools like Pandas, SQLAlchemy, Dash & petl.