PeopleSoft Integration using Oracle Integration Cloud – Part 1

Luckily, I’ve got a chance to look at PeopleSoft integration with other SaaS app using OIC (Oracle Integration Cloud) and decided to share what I learned.

If you’re not familiar with PeopleSoft, please visit PeopleSoft Information Portal and just click hamburger menu on top right-hand side of web page. You will see it covers lots of things.

Picture1

I’ll explain contact information synchronisation from Salesforce.com into PeopleSoft which is SOAP web service based integration. It is a typical integration use case for PeopleSoft. Will post REST API and file based integration in future as well.

PeopleSoft has excellent middleware layer called Integration Broker. And I’ve chosen SOAP web service for contact information component interface as it would be easiest and simplest way to expose simple business logic in PeopleSoft as SOAP web service. Of course, you have other options such as REST API,  JMS, file based integration, it really depends on organisation’s integration requirements.

Screen Shot 2018-08-28 at 6.14.35 pm.png
SOAP/HTTP capability of PeopleSoft Integration Broker

 

I will focus on how to manage CI(Component Interface)-based web service configuration of PeopleSoft Integration Broker in this Part 1 –  I’ll be using PeopleSoft version 9.2 with PeopleTools 8.56.

Very Short version of PeopleSoft Dictionary

Hope you learn some words in advance, which are meaningful in PeopleSoft ecosystem.

PeopleTools: PeopleTools provides the underlying technology for PeopleSoft applications. All PeopleSoft applications, such as Human Capital Management and Customer Relationship Management are built, deployed, and maintained using PeopleTools.

With PeopleTools you can:

  • Develop new applications or customize existing applications.
  • Administer applications that you have deployed within your organization.
  • Provide decision support and reporting functionality to decision makers.
  • Integrate PeopleSoft applications with other PeopleSoft applications or third-party applications.
  • Upgrade and update your applications as part of system lifecycle management.

PeopleCode: PeopleCode is the structured programming language built into PeopleTools that extends the functionality of the PeopleTools environment, it is a proprietary object-oriented programming language used to express business logic for PeopleSoft applications

Integration Broker: PeopleSoft Integration Broker is a middleware technology that –

  • Performs asynchronous and synchronous messaging among internal systems and third-party systems.
  • Exposes PeopleSoft business logic as web services to PeopleSoft and third-party systems
  • Consumes and invokes web services from third-party and PeopleSoft systems.

It enables you to perform these integrations among internal systems and third-party integration partners, while managing data structure, data format and transport disparities. Because of its modular design, you can reuse many elements that you develop for integrations. It consists of two subsystems: the integration gateway and the integration engine. The integration gateway resides on a PeopleSoft web server, and the integration engine is installed on an application server as part of the PeopleSoft application.

Component interface: Component interface is a set of application programming interfaces (APIs) that you can use to access and modify PeopleSoft database information programmatically. PeopleSoft component interfaces expose a PeopleSoft component (a set of pages grouped for a business purpose) for synchronous access from another application (PeopleCode, Java, or C/C++).

 

Expose Contact Information Component interface SOAP web service

Now I’ll explain quickly how to expose contact information component interface as SOAP web service.

  1. Go to Application Login, Financials/Supply Chain. 

Picture2

Then log on using username VP1. VP1 is typical username which has admin role in PeopleSoft.

Picture4

  1. Go to NavBar from top right-hand side, then go to Navigator, Customer, Contact Information.

Screen Shot 2018-08-28 at 5.27.32 pm

And search by Contact Name. I’ve used SetID SHARE and Contact Name begins with Bruce.

Picture5

 

I’ve got search result with Bruce Lee as below.

Picture6

  1. Now go from Navigator, PeopleTools, Integration Broker, Web Services, CI-Based Services.  Screen Shot 2018-08-28 at 5.34.33 pm
  1. Search CONTACT_INFO from component interface name and select it. Then click Review CI STATUSPicture8
  1. You will see nothing from Service Operation. Select Select All and click Display Selected ActionsPicture9
  1. Select all if not, then click Perform Selected ActionsPicture10
  1. We’ve got service operation available. Click View Service Definition.  Picture11
  1. Click Provide Web ServicePicture12
  1. Select Select All, then click Next under Step 2 of 4Picture13
  1. You can check content of WSDL from View WSDL. Click Next under Step 3 of 4Picture14  Picture15
  1. Click FinishPicture16
  1. Download WSDL from runtime WSDL URL. Make sure to download all of related schema files as well. It seems my PeopleSoft demo environment used http for runtime WSDL URL and actual web service endpoint within WSDL. I had to change it to httpsPicture17
  1. Try find, get web service call from Soap UI using downloaded WSDL or runtime WSDL URL. I tried CI_CONTACT_INFO_F (find) web service call with SetID SHARE and “Bruce” and it returned CONTACT_ID 50. Picture18
  2. Tried CI_CONTACT_INFO_G (get) web service operation with SetID SHARE and CONTACT_ID 50 which returned detail of Bruce as below.  Picture19

Now we’re ready to go for development in OIC. Will continue in Part 2 soon…

 

Author: Jin Park

Currently working as Oracle ANZ Cloud Platform Solution Engineer and looking after iPaaS solution. Got years of experience as a consultant within IT industry related to development, support, design. Experienced in industries such as government, utilities (Water, Transport), vehicle security.

7 thoughts on “PeopleSoft Integration using Oracle Integration Cloud – Part 1”

  1. Very nice information and thank you for sharing these tips. We will be using some of these in our upcoming projects as well. Looking forward to more of your content

    Like

Leave a comment