We are proud to share our inclusion in the 2024 Gartner Magic Quadrant for Data Integration Tools. We believe this recognition reflects the differentiated business outcomes CData delivers to our customers.
Get the Report →How to connect to SAP Ariba Procurement Data with Squirrel SQL client
Connect to SAP Ariba Procurement data and execute queries in the Squirrel SQL Client.
The CData JDBC Driver for SAP Ariba Procurement enables you to execute queries to SAP Ariba Procurement data in tools like Squirrel SQL Client. In this article, you will create a JDBC data source for SAP Ariba Procurement data and execute queries.
Add the JDBC Driver for SAP Ariba Procurement
Follow the steps below to add the driver JAR.
- In Squirrel SQL, click Windows -> View Drivers.
- Click the plus icon to open the Add Driver wizard.
- In the Name box, enter a user-friendly name for the driver; for example, CData JDBC Driver for SAP Ariba Procurement.
- In the Example URL box, enter jdbc:saparibaprocurement:
- In the Extra Class Path tab, click Add.
- In the file explorer dialog that opens, select the JAR file for the driver, located in the lib subfolder of the installation directory.
- Click List Drivers to populate the Class Name menu with the class name for the driver, cdata.jdbc.saparibaprocurement.SAPAribaProcurementDriver.

Define Connection Properties
Follow the steps below to save connection properties in the driver alias.
- Click Windows -> View Aliases.
- In the pane that lists the aliases, click the plus icon.
In the Add Alias wizard that opens, the following fields are required for the JDBC driver:
- Name: Enter a name for the alias; for example, CData SAP Ariba Procurement Source.
- Driver: Select the CData JDBC Driver for SAP Ariba Procurement.
- URL: Enter jdbc:saparibaprocurement:
- If you want to define any additional properties, click Properties.
- In the Driver properties tab of the dialog that appears, select the Use driver properties checkbox.
- In the Specify column, select the checkboxes for the required connection properties.
In order to connect with SAP Ariba Procurement, set the following:
- ANID: Your Ariba Network ID.
- ANID: Specify which API you would like the provider to retrieve SAP Ariba data from. Select the Buyer or Supplier API based on your business role (possible values are PurchaseOrdersBuyerAPIV1 or PurchaseOrdersSupplierAPIV1).
- Environment: Indicate whether you are connecting to a test or production environment (possible values are TEST or PRODUCTION).
Authenticating with OAuth
After setting connection properties, you need to configure OAuth connectivity to authenticate.
- Set AuthScheme to OAuthClient.
- Register an application with the service to obtain the APIKey, OAuthClientId and OAuthClientSecret.
For more information on creating an OAuth application, refer to the Help documentation.
Automatic OAuth
After setting the following, you are ready to connect:
-
APIKey: The Application key in your app settings.
OAuthClientId: The OAuth Client Id in your app settings.
OAuthClientSecret: The OAuth Secret in your app settings.
When you connect, the provider automatically completes the OAuth process:
- The provider obtains an access token from SAP Ariba and uses it to request data.
- The provider refreshes the access token automatically when it expires.
- The OAuth values are saved in memory relative to the location specified in OAuthSettingsLocation.
Below is a typical connection string:
jdbc:saparibaprocurement:ANID=AN02000000280;API=PurchaseOrdersBuyerAPI-V1;APIKey=wWVLn7WTAXrIRMAzZ6VnuEj7Ekot5jnU;AuthScheme=OAuthClient;InitiateOAuth=GETANDREFRESH
- In the dialog that appears after you click OK, click connect to test the connection.
Discover Schemas and Query SAP Ariba Procurement Data
After the metadata has loaded, a new tab for the SAP Ariba Procurement data source is displayed. On the Objects subtab, you can discover schema information, such as the available tables and views.
To view table data, select the table on the Objects tab. The table data is then loaded in a grid on the Content tab.

To execute an SQL query, enter the query on the SQL tab and then click Run SQL (the runner icon). For example:
SELECT DocumentNumber, Revision FROM Orders WHERE OrderStatus = 'CHANGED'
