Table of Contents

Search

  1. Preface
  2. Part 1: Using Process Developer
  3. Part 2: Creating and Modifying Processes
  4. Part 3: Functions, Events, Errors, and Correlation
  5. Part 4: Testing and Deployment
  6. Part 5: Process Central and Process Server (On-Premises)

Process Developer

Process Developer

Using a Variable from a Catch or Interrupting OnEvent Boundary Event

Using a Variable from a Catch or Interrupting OnEvent Boundary Event

An interrupting
onEvent
boundary event as well as a catch boundary event are Process Developer extensions. As such, the variable handling for these events differs from normal BPEL fault and event handling.
Catch Boundary Event Variable Handling
If you want to define a variable for a catch boundary event, you must select an existing process variable or create a new process variable in the Fault Variable picklist.
This differs from defining a variable in a normal scope catch handler, where you can type in a special fault variable name.
This difference arises because in a normal catch handler, the fault variable is used within an activity that is enclosed by the scope. In an interrupting boundary event, there is no activity within the event handler. Instead, the boundary event links to an activity in the process or another scope.
Behind the scenes, Process Developer generates the activities needed in order to use boundary event variables. Process Developer creates an implicit
parameters
variable for the catch that is available only within a hidden scope containing the catch boundary event. Therefore, to define a variable for use in another part of the process, such as a reply with fault, you must select a process variable or create a new process variable. Process Developer maps the implicit
parameters
variable to the process variable. See the example below.
Interrupting OnEvent Boundary Event
The variable handling is essentially the same as for a catch boundary event. In the Properties view of an interrupting
OnEvent
boundary event, you can select an existing process variable or create a new variable in the Variable drop-down.
Example
The following illustration shows the Properties for an interrupting
OnEvent
boundary event.
Properties of interrupting boundary event
In the BPEL source code, notice that a scope with an assign is added. The assign copies the implicit scope variable, parameters, to the process variable,
customerComplaint
.
<bpel:eventHandlers> <bpel:onEvent aei:boundaryEvent="interrupting" element="ns6:customerComplaint" ext1:handleIMAInEnclosingScope="true" operation="getComplaint" partnerLink="RepairServices" variable="parameters"> <bpel:scope> <bpel:assign ext1:mutexTransitions="yes"> <bpel:sources> <bpel:source linkName="L5"/> </bpel:sources> <bpel:copy> <bpel:from variable="parameters"/> <bpel:to variable="customerComplaint"/> </bpel:copy> </bpel:assign> </bpel:scope> </bpel:onEvent> </bpel:eventHandlers>

Back to Top

0 COMMENTS

We’d like to hear from you!