![]() |
VOOZH | about |
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.
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.
In basic authentication, you use your login credentials to connect. Set the following properties:
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.
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.
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();
Download a free trial of the SAP Netweaver Gateway ODBC Driver to get started:
Download NowLearn more:
👁 SAP Netweaver Gateway IconThe 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.