Ready to get started?

Download a free trial of the SAP Netweaver Gateway ODBC Driver to get started:

 Download Now

Learn more:

SAP Netweaver Gateway Icon SAP Netweaver Gateway ODBC Driver

The SAP Netweaver Gateway ODBC Driver is a powerful tool that allows you to connect with live data from SAP Netweaver Gateway, directly from any applications that support ODBC connectivity.

Access SAP Netweaver Gateway data like you would a database - read, write, and update SAP Netweaver Gateway Entities, etc. through a standard ODBC Driver interface.

Connect to SAP Netweaver Gateway Data from PowerBuilder



This article demonstrates how to use the CData ODBC Driver for SAP Netweaver Gateway to connect to SAP Netweaver Gateway data and execute queries in PowerBuilder.

The CData ODBC Driver for SAP Netweaver Gateway can be used from any platform or development technology that supports ODBC, including PowerBuilder. This article shows how to connect to SAP Netweaver Gateway data and execute queries from the Database Painter and controls such as the DataWindow.

Connect to SAP Netweaver Gateway as an ODBC Data Source

If you have not already, first specify connection properties in an ODBC DSN (data source name). This is the last step of the driver installation. You can use the Microsoft ODBC Data Source Administrator to create and configure ODBC DSNs.

SAP Gateway allows both basic and OAuth 2.0 authentication. You can use basic authentication to connect to your own account, or you can use OAuth to enable other users to retrieve data from your service with their accounts. In addition to authenticating, set the following connection properties to access SAP Gateway tables.

  • Url: Set this to the URL of your environment, or to the full URL of the service. For example, the full URL might appear as: https://sapes5.sapdevcenter.com/sap/opu/odata/IWBEP/GWSAMPLE_BASIC/. In this example, the environment URL would just be: https://sapes5.sapdevcenter.com.
  • Namespace: Set the appropriate Service Namespace. In the example above, IWBEP is the namespace. It is optional if the full URL to the service is specified.
  • Service: Set this to the service you want to retrieve data from. In the example above, the service is GWSAMPLE_BASIC. It is not required if the full URL is specified.

Authenticate via Basic Authentication

In basic authentication, you use your login credentials to connect. Set the following properties:

  • User: This is the username you use to log in to SAP Gateway.
  • Password: This is the password you use to log in to SAP Gateway.

Authenticate via OAuth Authentication

You can connect to SAP Gateway using the embedded OAuth connectivity (without setting any additional authentication connection properties). When you connect, the OAuth endpoint opens in your browser. Log in and grant permissions to complete the OAuth process. See the OAuth section in the online Help documentation for more information on other OAuth authentication flows.

Create a Profile for the ODBC Driver for SAP Netweaver Gateway

Follow the steps below to use the Database Painter tool to create a database profile based on an ODBC DSN (data source name) for SAP Netweaver Gateway. In the Database Painter, you can use wizards and the UI to work with SAP Netweaver Gateway data.

  1. In PowerBuilder, click Tools -> Database Painter.
  2. In the Objects window in the Database Painter, right-click the ODBC node and click New Profile.
  3. On the Connection tab, enter a name for the profile and select the SAP Netweaver Gateway DSN in the Data Source menu.
  4. To view and modify a table, right-click a table and then click Edit Data -> Grid.

Using SAP Netweaver Gateway Data with PowerBuilder Controls

You can use standard PowerBuilder objects to connect to ODBC data sources and execute queries. The following example shows how to retrieve SAP Netweaver Gateway data into a DataWindow. You can add the following code to the open method:

SQLCA.DBMS = "ODBC" SQLCA.DBParm = "ConnectString='DSN=CData SAPGateway Source'" CONNECT USING SQLCA; dw_salesorderlineitems.SetTransObject(SQLCA); dw_salesorderlineitems.Retrieve();