#416 Process Cloud Service -> Interplay with BPM-on-Premise for Design Time
Here is my PCS process -I have 2 Data Objects defined -I now download the process -I now import this to BPM JDeveloper 12cView the data objects -Note: the start event -This, you may need to change to -
View Article#417 Process Cloud Service - Defining and leveraging Web Services therein
Here is my credit card validation web service -The wsdl in the WSDLs folder refers to the xsd in the Schemas folder -As you can see, I have zipped up the 2 folders into CCService.zip.I now import this...
View Article#418 Process Cloud Service - REST API
Using the REST API, you can integrate with applicationsoutside of Oracle Process Cloud Service.So say the ORCL docs - so what does this look like?The above screenshot shows a few of these...
View Article#419 Process Cloud Service --> Error Handling / Instance Recovery
Here is my sample process -It call the web service validate credit card (ServiceTask: ValidateCC).So what happens if this service is unavailable?I check this out via the  Tracking tab -  Here is the...
View Article#420 Process Cloud Service --> Fixing Task Assignment Errors
Above task has been assigned to the non-existent user, jimbo.I create 2 instances of the process -I then log in as Administrator, phillip and see the following -2 Alerted Tasks.I click on the link...
View Article#421 Process Cloud Service --> Resolving Recoverable Instances
Still using the ubiquitous order process...I add a new Service Task to call a Security Check Service.Here are some test results for the service, using SOAP-UI.The business logic is very simple -If...
View Article#422 Process Cloud Service --> testing processes from SOAP-UI
Here is my sample process -Interface (Start Activity) -User niall is an Approver.I deploy the app to the Test partition.Back in Composer, I log in as my admin user, phillip.I select my app,...
View Article#423 Process Cloud Service --> Exporting Audit data
I log in to Workspace as my admin user, phillip.I click on Tracking, and check on completed instances. I will now export the completed instances of MyOrderProcess.I select the application(s) I want to...
View Article#424 Process Cloud Service - REST API - passing parameters Part I
In this post I look at a couple more of the PCS REST APIs -I am using the following process for demo purposes -What processes do I have?This is just to recap -try GET /process-definitionscurl -u...
View Article#425 Process Cloud Service --> REST API -- Initiating a process
Firstly, a very big thanks you to my colleague Ralf M. for his input here.Here is my process -I pick up the wsdl from the management page in Composer -I use this to create a new project in SOAP-UI.Here...
View Article#426 Process Cloud Service - Reusable Subprocesses
Simple scenario here -Process A calling process B.B has a human task -A uses the call activityI now validate the application -Let's look at the implementation of the Call activity -Note: no processes...
View Article#427 Process Cloud Service --> ProcessA calling Process B via Send/Receive
Another simple scenario, leading on from the last post.I have now added process C to my application -It does a security check on my order -Now I call this from ProcessA using Send and Receive...
View Article#428 Integration Cloud Service (ICS) on OPC -> First steps
Simple procedure -I get an email containing my account details -Note: I have deleted Temporary Password and Identity Domain.I click on the link to access the account.I enter my identity domain details...
View Article#429 Process Cloud Service -> Decisions
Essentially we are talking about a simplified version of Oracle Business Rules here.Yes, the rules you know and love from on-prem SOA and BPM.To quote from the PCS docs -Business rules enable you to...
View Article#430 Using Postman to test PCS REST services
I installed Postman and it is now available via the Chrome App Launcher -I execute the REST call to GET /process-definitionsI specify Basic Auth.Easier to read than output from cURL.Also easier to deal...
View Article#431 - Process Cloud Services - Decisions, Decisions...
We all love making decisions and PCS makes it even easier for us -Generate Unique RulesMy rules check whether manual approval is required for an order.Input is the order total, output is...
View Article#432 Process Cloud Service - Instance Tracking and Alter Flow/Resume
This is a cool PCS feature, but let's look at who can track what andwho can alter process flow and resume.Here is my demo process -In this scenario I have the following roles/users.PCS admin user:...
View Article#433 Process Cloud Service - Application Roles & Admin role - who can do what...
..and what they allow us to do...I have covered the basic PCS roles, their rights and their responsibilities in an earlier post.You can check it out hereNow to go into some more depth...Here is my...
View Article#434 - Integration Cloud Service - Simple web service consumption
In this simple scenario, I leverage ICS to consume a simple stock quote service.This web service is described here -http://www.webservicex.net/stockquote.asmx?WSDLCreate the ConnectionHere I click on...
View Article