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 →Deploy the ADO.NET Provider for Odoo on an SSRS Report Server
Connect to Odoo data from multiple reports and pick up updates immediately: Create a shared data source on a native mode report server or a report server on a SharePoint farm.
In this article, we will guide you through the deployment process of the CData ADO.NET Provider for Odoo on an SQL Server Reporting Services (SSRS) report server. Additionally, you will learn how to establish a shared data source, which facilitates connectivity to real-time Odoo data from various reports. You can then access these shared data sources from the Report Designer within Visual Studio. For detailed instructions on creating datasets in Report Designer using ADO.NET, please refer to the "Using ADO.NET" section in the help documentation.
About Odoo Data Integration
Accessing and integrating live data from Odoo has never been easier with CData. Customers rely on CData connectivity to:
- Access live data from both Odoo API 8.0+ and Odoo.sh Cloud ERP.
-
Extend the native Odoo features with intelligent handling of many-to-one, one-to-many, and many-to-many data properties. CData's connectivity solutions also intelligently handle complex data properties within Odoo. In addition to columns with simple values like text and dates, there are also columns that contain multiple values on each row. The driver decodes these kinds of values differently, depending upon the type of column the value comes from:
- Many-to-one columns are references to a single row within another model. Within CData solutions, many-to-one columns are represented as integers, whose value is the ID to which they refer in the other model.
- Many-to-many columns are references to many rows within another model. Within CData solutions, many-to-many columns are represented as text containing a comma-separated list of integers. Each value in that list is the ID of a row that is being referenced.
- One-to-many columns are references to many rows within another model - they are similar to many-to-many columns (comma-separated lists of integers), except that each row in the referenced model must belong to only one in the main model.
- Use SQL stored procedures to call server-side RFCs within Odoo.
Users frequently integrate Odoo with analytics tools such as Power BI and Qlik Sense, and leverage our tools to replicate Odoo data to databases or data warehouses.
Getting Started
Deploy the ADO.NET Provider
The provider installation automatically deploys the provider on report servers in native mode. On report servers in SharePoint mode, you can use the install-sprs.ps1 PowerShell script to deploy. Simply run the script from the lib subfolder in the installation directory, or pass in the "path" parameter.
Create a Shared Data Source for Odoo
You can create shared data sources directly from a report server or SharePoint site. Alternatively, you can use Report Designer to create shared data sources.
Report Designer
You can use Report Designer to create shared data sources on native mode report servers and report servers on a SharePoint server farm.
- In a Report Server Project in Visual Studio, right-click Shared Data Sources in Solution Explorer and click Add New Data Source.
- Enter a name for the data source and in the Type menu select CData Odoo Report.
- In the Connection String box, enter the connection string to connect to Odoo. A typical connection string is below:
User=MyUser;Password=MyPassword;URL=http://MyOdooSite/;Database=MyDatabase;
To connect, set the Url to a valid Odoo site, User and Password to the connection details of the user you are connecting with, and Database to the Odoo database.
When you configure the connection, you may also want to set the Max Rows connection property. This will limit the number of rows returned, which is especially helpful for improving performance when designing reports and visualizations.
- Set the folder and server URL in your project properties. If you are publishing to SharePoint, the values for all properties must be fully qualified URLs. For example:
- Report Server: http://MyServerName/ReportServer
- SharePoint: http://MyServerName/MySite/MySubsite
- Right-click the shared data source and click Deploy.
Report Manager
On native mode installations of report server, you can use Report Manager to create shared data sources. You must have permissions to manage data sources on the report server.
- From the Home page in Report Manager, click New Data Source. The New Data Source page is displayed.
- Enter a name for the data source and in the Data Source Type menu, select CData Odoo Report.
- In the Connection String box, enter the connection string to connect to Odoo. A typical connection string is below:
User=MyUser;Password=MyPassword;URL=http://MyOdooSite/;Database=MyDatabase;
To connect, set the Url to a valid Odoo site, User and Password to the connection details of the user you are connecting with, and Database to the Odoo database.
SharePoint
Follow the steps below to create a shared data source on a SharePoint site. Note that this step has the following prerequisites in SharePoint 2013:
- The Reporting Services add-in for SharePoint
- The Report Server Integration site collection feature
Follow the steps below to add the report server content types to your library:
- Log into SharePoint and open the library where you want to save the .rsds file.
- Click Library on the ribbon and then click Library Settings.
- In the General Settings section, click Advanced Settings.
- In the Content Types section, select Yes to allow the management of content types. The Content Types section is added to the Library Settings page.
- On the Library Settings page, click Add from existing site content types.
- In the Available Site Content Types list, select Report Data Source and click Add.
You can then create the shared data source. You will create an .rsds file that contains the connection information to Odoo.
- Log into SharePoint and open the library where you want to save the .rsds file.
- On the ribbon click Documents -> New Document -> Report Data Source.
- Enter a name for the data source.
- In the Data Source Type menu, select CData Odoo Report.
- In the Connection String box, enter the connection string to connect to Odoo. A typical connection string is below:
User=MyUser;Password=MyPassword;URL=http://MyOdooSite/;Database=MyDatabase;
To connect, set the Url to a valid Odoo site, User and Password to the connection details of the user you are connecting with, and Database to the Odoo database.