Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →Import Workday Data into FileMaker Pro
Create reports that integrate Workday data in Filemaker Pro.
One of the strengths of the CData ODBC driver is its ubiquitous support across many applications and platforms. In this article, you will configure the ODBC driver in FileMaker Pro and create data visualizations with Workday data.
About Workday Data Integration
CData provides the easiest way to access and integrate live data from Workday. Customers use CData connectivity to:
- Access the tables and datasets you create in Prism Analytics Data Catalog, working with the native Workday data hub without compromising the fidelity of your Workday system.
- Access Workday Reports-as-a-Service to surface data from departmental datasets not available from Prism and datasets larger than Prism allows.
- Access base data objects with WQL, REST, or SOAP, getting more granular, detailed access but with the potential need for Workday admins or IT to help craft queries.
Users frequently integrate Workday with analytics tools such as Tableau, Power BI, and Excel, and leverage our tools to replicate Workday data to databases or data warehouses. Access is secured at the user level, based on the authenticated user's identity and role.
For more information on configuring Workday to work with CData, refer to our Knowledge Base articles: Comprehensive Workday Connectivity through Workday WQL and Reports-as-a-Service & Workday + CData: Connection & Integration Best Practices.
Getting Started
Query Workday Data in FileMaker Pro
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. See the "Getting Started" chapter of the help documentation for a guide to creating a DSN on Windows or Unix-based systems like Mac OS X and Linux.
To connect to Workday, users need to find the Tenant and BaseURL and then select their API type.
Obtaining the BaseURL and Tenant
To obtain the BaseURL and Tenant properties, log into Workday and search for "View API Clients." On this screen, you'll find the Workday REST API Endpoint, a URL that includes both the BaseURL and Tenant.
The format of the REST API Endpoint is: https://domain.com/subdirectories/mycompany, where:
- https://domain.com/subdirectories/ is the BaseURL.
- mycompany (the portion of the url after the very last slash) is the Tenant.
Using ConnectionType to Select the API
The value you use for the ConnectionType property determines which Workday API you use. See our Community Article for more information on Workday connectivity options and best practices.
API | ConnectionType Value |
---|---|
WQL | WQL |
Reports as a Service | Reports |
REST | REST |
SOAP | SOAP |
Authentication
Your method of authentication depends on which API you are using.
- WQL, Reports as a Service, REST: Use OAuth authentication.
- SOAP: Use Basic or OAuth authentication.
See the Help documentation for more information on configuring OAuth with Workday.
When you configure the DSN, 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.
You can then load Workday data into tables in Filemaker Pro:
- In your solution, click File -> Import Records -> ODBC Data Source, and select the CData Workday DSN.
-
In the resulting SQL Query Builder wizard, select tables and columns and then click Insert into SQL Query. You can edit this query directly. For example:
SELECT Worker_Reference_WID, Legal_Name_Last_Name FROM Workers WHERE Legal_Name_Last_Name = 'Morgan'
You can use the UI to build filters in the WHERE clause by clicking the WHERE tab.
- In the resulting Import Field Mapping wizard, you can define mappings from columns in the data source to the columns in a destination table. To create a new table for the query results, select New Table ("CData Workday Source") from the Target box, and click Import.
For more information on the SQL that the driver supports out of the box, see the help documentation.
Process Data at Design Time
You can sort and aggregate data, as well as calculate summary functions, while you browse tables. To manipulate the view of data at design time, first complete the two steps below:
- Switch to Browse mode: Click the Mode pop-up menu in the footer of the application.
- Switch to Table view: Click the table icon in the View As menu in the main toolbar of the application.
Aggregate and Summarize
Follow the procedure below to group column values and then display a summary, as shown in the screenshot below:
- Sort: Click the arrow in the Worker_Reference_WID column header and then click Sort Ascending in the resulting menu.
- Group: In the menu for the Worker_Reference_WID column click Add Trailing Group by Worker_Reference_WID to group the values and create a subsequent row where summary calculations can be inserted. Click Add Leading Group to introduce the group with a summary.
- Summarize: In the menu for a column that has been grouped, select a summary from the Trailing Subtotals menu.
the procedure below to create a simple bar chart that shows the total Legal_Name_Last_Name for each Worker_Reference_WID.
- Click the arrow in the Legal_Name_Last_Name column header and click "Chart by Legal_Name_Last_Name" in the menu. If you have already grouped on a column in the Table view, Worker_Reference_WID, for example, you can select the option to chart Legal_Name_Last_Name by Worker_Reference_WID.
- In the Chart Setup window, select columns to draw the chart: To add the column for the x-axis, click the button next to the Data box.
Selecting the x-axis and y-axis will draw the chart. You can also process data in the Chart Setup: Set the following options to create a basic chart.
- Click the button next to the Data box and select Specify Field Value. Select a column in the resulting dialog.
- Select a summary for the y-axis in the Summary menu.