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.
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, there are three pieces of information required: Authentication, API URL, and WSDL URL.
Authentication
To authenticate, specify your User and Password. Note that you must append your Tenant to your User separated by an '@' character. For instance, if you normally log in with 'geraldg' and your Tenant is 'mycompany_mc1', then your User should be specified as 'geraldg@mycompany_mc1'.
API URL
The API URL may be specified either directly via APIURL, or it may be constructed from the Tenant, Service, and Host. The APIURL is constructed in the following format: <Host>/ccx/service/<Tenant>/<Service>.
WSDL URL
The WSDLURL may be specified in its entirety, or may be constructed from the Service and WSDLVersion connection properties. The WSDLURL is constructed in the following format: https://community.workday.com/sites/default/files/file-hosting/productionapi/<Service>/<WSDLVersion>/<Service>.wsdl
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.