How to build complex integrations with Workday?

Are you committing to an assignment on Workday? Will you be working on Workday-related data integrations? Whether you manage projects or develop software directly, discover Workday Studio, Workday’s integration software.

IT Strategy

Integration with Workday Studio

IS Consultant at SQORUS

What is the Workday integration platform?

Workday is a SaaS* software for human resources and financial management. Data management is done mainly through reports and data integrations.

Workday Studio, which will be featured here, is a tool for creating complex data integrations for Workday. It’s a unified, Eclipse**-based environment for developing, deploying, and updating complex integrations, running in the Workday cloud.

Workday Studio is a perfect example of a tool Low code***, in which you create reusable block assemblies.

The source code of the integrations is based on the XML protocol, but like an Eclipse module, Studio also supports Java customization.

Three Workday tools to build integrations

In Workday, there are three types of integrations – Cloud Connect, Enterprise Interface Builder and Workday Studio. Each with its own benefits and limitations.

Workday Cloud integration scheme

 

Workday’s first tool: Cloud Connect

The first type are Cloud Connect integrations.

These are standardized pre-built integrations, called connectors, supported and maintained by Workday. There are a number of useful connectors for many use cases. They significantly reduce the development time needed to build a complete integration. Each connector is configurable to suit different needs.

The benefits of this approach are:

  • Access to a set of predefined integrations;
  • Low cost, low risk, and quick to deploy with no need to code;
  • Integrations fully supported by Workday, certified and tested through regular updates and fixes.

These integration templates should be the first choice when building new integrations, if the desired template exists. These integrations can then be enriched by data transformations or Studio integrations.

 

Workday’s second tool: Enterprise Interface Builder

The second type of integration is the Enterprise Interface Builder (EIB).

The EIB tool provides an easy-to-use, guided graphical interface that allows integrations to be set up with little or no programming. This tool is used to create simple data inbound and outbond integrations. They constitute between 40 and 50% of all integrations used. Of these, up to 90% are outbound integrations and use Workday reports as data sources. However, EIBs are limited. Each integration supports only one data source and one transformation. EIBs are to be used to create low data volume and low complexity integrations.

EIB diagram

 

Workday’s third tool: Workday Studio

Workday Studio, the third type, is used for other, often more complex integrations. It allows a great flexibility of creation. Generally, the following cases of using Studio can be cited:

  • several data sources;
  • efficient and scalable process;
  • source control, unit tests, debugging… ;
  • handling of complex errors, different reaction depending on conditions ;
  • complex, logical loops, depending on external variables or dynamic data;
  • large data sets to be transferred.

Workday Studio: the most complete integration tool

Workday Studio integrations are developed in distinct phases:

  • Design: building assemblies in Studio
  • Deployment: connect to the Cloud repository and deploy the integration in Studio
  • Configuration: configuration of services required by the Studio integration system, such as integration maps, transports, permissions or notifications, to be performed in the Workday application
  • Launch: launch the integration either from Studio or from the Workday application
  • Monitoring: track the progress of the integration from within Workday Studio or the Workday application. It is also possible to access a consolidated report of the integration process once it is complete.
Workday Studio integration scheme

The design phase is the most time consuming, as it involves the entire construction of the integration. The following phases follow each other quite quickly.

Here are the different tools for the assembly presented below.

 

Workday Studio: API connection

One of the main resources in Workday Studio includes connections to Workday’s APIs****.

The first method of using Workday APIs is through web services and the SOAP protocol. Workday web services are used to collect and update data in Workday. Example: the Change Job web service allows you to change the assignment of a person. Studio provides the tools to configure, test and trigger web service requests. SOAP requests provide access to Workday data and are secured by Workday’s security protocol.

The second method of using Workday APIs is through Workday reports as data sources. This allows, thanks to the principle of RaaS (Report as a Service), to use Workday reports as web services. They can be called directly in the Studio integrations through REST requests.

The third method of using Workday APIs is a synchronous request/response transport that sends requests from Workday to a URL through an HTTP protocol. This method can be done via SOAP or REST requests.

 

Workday Studio: using blocks

In Workday Studio, an integration is developed through an assembly using the Workday Studio visual assembly editor.

An assembly is a graphical representation of an integration system. It is composed of different configurable components (or blocks) each having a functionality: creation and manipulation of variables, format transformation, error handling, etc.

Individual components are linked together to form processing chains, and define integration. The output message of each component becomes the input of the component to which it is connected. The assembly editor offers complete freedom on how to connect components together.

Basic components provide a way to connect processing steps together in processing chains. Advanced components provide a way to dynamically control how assembly execution moves through the processing chain.

Hello Cloud blocks

The assembly editor provides a wide range of components to manipulate messages and communicate with other systems through various protocols such as FTP, SFTP, SMTP (email), HTTP and HTTPS. The assembly editor also supports message transformations using XSLT (Extensible Stylesheet Language Transformations). XSLT is a form of XML-to-Text mapping called Text Schema.

There are two representations of the assembly. The first is a graphical representation, displayed in the default Design tab. A Source tab also exists, and represents the XML source code of the integration. It is best to add and configure the assembly components using the editor, not directly by editing the XML components in the Source tab.

Once the assembly is completed and saved, it is deployed to Workday. Then the integration is launched by choosing the launch parameters, either in Studio or in the Workday application.

Assemblies provide a number of features to enable the creation of scalable integrations. All integrations must be developed in a scalable and adaptable manner. It must be assumed that the data sources they process can be arbitrarily large. For example, with each processing of position information, it should be assumed that the number of positions can increase to an arbitrary number. The basic approach to ensuring that integrations are scalable is to use components called splitters and aggregators. They allow you to split the data source into individual records (e.g. one position).

These components are necessary to use. Indeed, as a SaaS* software, there is no direct access to the Workday database. It is therefore necessary to compensate with as many good optimization practices as possible. In addition, an integration will be stopped after four hours of treatment. This means that integrations must be able to run in less than four hours, even with large volumes of data.

 

Workday Studio: Error Control and Management

Integration events include a set of logs used for troubleshooting errors in integrations. This includes the launch request, the server console log, and the performance profile log in CSV format. The consolidated report summarizes all this in XML format. It is available for EIBs and some connectors but is more useful for errors in Studio integrations.

These control elements can be found in Workday Studio as well as in the Workday application.

control and error management

In addition, Workday Studio contains a debugger to detect and identify errors in a program. It allows you to visualize the execution of the program by placing breakpoints, which suspends the launched integration. By going step by step, it is possible to examine the content of the variables and thus find out where the errors come from.

 

Workday Studio : support

Workday Studio can be a difficult tool to grasp and use, especially without certification. There is not much content (on Stack Overflow for example) to help us. There are two main ways to find the answers to our questions, besides YouTube videos and trainings.

The first is Workday Community. It is a collaborative space where you can :

  • Post/Read articles listing good practices
  • Find many solved problems, like Stack Overflow, on the forum
  • Ask a question on the forum, if it does not already exist
  • Ask a question directly to Workday support, who can provide answers individually, by answering the ticket, or by call
  • Paying for Office Hours, which allows for an interview with Studio experts

The second is Help Contents. This is a section directly in Studio that gives some syntax and uses of functions.

Conclusion on data integration with Workday Studio

What I like most about Workday Studio is the diversity of the blocks that bring together so many features. The freedom of use of these blocks allows you to create precise and complete integrations.

However, the handling of Studio is not completely intuitive, and the help is not complete enough on the internet, which requires many empirical tests. You also need to pay attention to the optimization of integrations, which requires the use of good practices and a good knowledge of Studio.

Don’t wait, contact us now to learn more about how we can help you get the most out of Workday Studio.

With SQORUS consultants, use Workday effectively and make informed decisions to achieve your goals.

 

* SaaS: Software as a Service = Application software solution hosted in the cloud

** Eclipse: IDE***** written in Java, now multi-language and multi-platform

*** Low code: Software development mode that hides all or part of the complexity of the application’s source code

**** API : Application Programming Interface = Software interface that allows to connect a software or a service to another software or service in order to exchange data and functionalities

***** IDE : Integrated Development Environment

Share This