Enable everyone in your organization to access their data in the cloud — no code required.
Learn More →Publish Reports with Microsoft Planner Data in Crystal Reports
Use the Report Wizard to design a report based on up-to-date Microsoft Planner data.
Crystal Reports has many options for offloading data processing to remote data; this enables real-time reporting. With the support for JDBC in Crystal Reports, the CData JDBC Driver for Microsoft Planner brings this capability to Crystal Reports. This article shows how to create a report on Microsoft Planner data that refreshes when you run the report.
Deploy the JDBC Driver
Install the CData JDBC Driver for Microsoft Planner by including the driver JAR in the Crystal Reports classpath: Add the full file path, including the .jar, to the paths in the ClassPath element, under the DataDriverCommonElement.
The CRConfig.xml is usually located at C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\java — the path might be slightly different based on your installation. The driver JAR is located in the lib subfolder of the installation directory.
After you have added the JAR to the ClassPath, restart Crystal Reports.
Connect to Microsoft Planner Data
After deploying the JDBC Driver for Microsoft Planner, you can then use the Report Wizard to add Microsoft Planner data to a new report.
- Click File -> New -> Standard Report.
- Expand the JDBC node under Create New Connection and double-click Make a New Connection.
In the wizard, enter the JDBC connection URL:
jdbc:microsoftplanner:OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;InitiateOAuth=GETANDREFRESH
You can connect without setting any connection properties for your user credentials. Below are the minimum connection properties required to connect.
- InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.
- Tenant (optional): Set this if you wish to authenticate to a different tenant than your default. This is required to work with an organization not on your default Tenant.
When you connect the Driver opens the MS Planner OAuth endpoint in your default browser. Log in and grant permissions to the Driver. The Driver then completes the OAuth process.
- Extracts the access token from the callback URL and authenticates requests.
- Obtains a new access token when the old one expires.
- Saves OAuth values in OAuthSettingsLocation to be persisted across connections.
Built-in Connection String Designer
For assistance in constructing the JDBC URL, use the connection string designer built into the Microsoft Planner JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.microsoftplanner.jar
Fill in the connection properties and copy the connection string to the clipboard.
When you configure the JDBC URL, 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 driver class name:
cdata.jdbc.microsoftplanner.MicrosoftPlannerDriver
-
Select the tables and fields needed in the report. This example uses the TaskId and startDateTime columns from the Tasks table.
You can then configure grouping, sorting, and summaries. For example, this article groups on TaskId and summarizes on startDateTime. See the following section to use the aggregate and summary to create a chart.
Create a Chart
After selecting a column to group by, the Standard Report Creation Wizard presents the option to create a chart. Follow the steps below to create a chart that aggregates the values in the TaskId column.
- In the Standard Report Creation Wizard, select the Bar Chart option and select the column you grouped by, TaskId in this example, in the On Change Of menu.
- In the Show Summary menu, select the summary you created.
- Select filters and a template, as needed, to finish the wizard.

Preview the finished report to view the chart, populated with your data. If you want to filter out null values, use a SelectionFormula.

Working with Remote Data
To ensure that you see updates to volatile data, click File and clear the "Save Data with Report" option. As you interact with the report, for example, drilling down to hidden details, Crystal Reports executes SQL queries to retrieve the data needed to display the report. To reload data you have already retrieved, refresh or rerun the report.
You can offload processing onto the driver by hiding details elements and enabling server-side grouping. To do this, you will need to have selected a column to group on in the report creation wizard.
- Click File -> Report Options and select the Perform Grouping On Server option.
- Click Report -> Section Expert and select the Details section of your report. Select the Hide (Drill-Down OK) option.
When you preview your report with the hidden details, Crystal Reports executes a GROUP BY query. When you double-click a column in the chart to drill down to details, Crystal Reports executes a SELECT WHERE query that decreases load times by retrieving only the data needed, instead of the entire table.