Usecase: Here, we will add start web form in the existing LeaveRequestProcessas multi start element and test in "Try in Test Mode".
Steps with screenshots:
Processess >> Process Applications >> your application >> Select the existing process
Usecase: Here, we will add start web form in the existing LeaveRequestProcessas multi start element and test in "Try in Test Mode".
Steps with screenshots:
Processess >> Process Applications >> your application >> Select the existing process
Usecase: Here, Using Oracle provided REST API, we will create/test a new process instance for a message based process from SOAP UI.
Note: It does not support process instance creation of a synchrounous process. Only Async process instances creation is supported.
To Create a Process Instance, use below URI and Verb:
Request Body:
Sample:
{
"processDefId":"oracleinternalpcs~<Application Name>!<Version>~<Process Name>",
"serviceName":"<process name>.service",
"operation":"start",
"action":"Submit",
"params":{"Name":"Sri", "Reason":"Not Feeling well","FromDate":"2022-07-25","ToDate":"2022-07-25"}
}
Note: operation by default is start. If you have changed your process operation, then you have to use the same
My used payload:
{
"processDefId":"oracleinternalpcs~LeaveRequestApplication!1.0~LeaveRequestProcess",
"serviceName":"LeaveRequestProcess.service",
"operation":"sendLeaveDetails",
"action":"Submit",
"params":{"Name":"Sri", "Reason":"Not Feeling well","FromDate":"2022-07-25","ToDate":"2022-07-25"}
}
Steps with Screenshots:
Open SOAP UI >> Rest >>provide URI>>Ok
Reference:
Usecase: Here, we will see the following -
Steps with screenshots:
Oracle Integration navigation pane >> processes >> Process Application
We can assign following roles to specific users or group for your process:
1. Export 11g OSB code and import in 12c Jdeveloper. Steps to import OSB project in Jdeveloper: File⇾Import⇾Service Bus Resources⇾ Se...