Name
BPEL.BPEL.instance_delete — delete a BPEL process instance
Synopsis
BPEL.BPEL.instance_delete
(
|
in
id
int
) ; |
Parameters
id
int instance identifier
Return Types
this function has no return value
Description
BPEL.BPEL.instance_delete
Deletes the instance, regardless of completion state or such. If there are waits for the instance the waits are flagged as deleted, not physically deleted. This will cause the reply message to be received instead of going to the unexpected messages queue.
Examples
Example 24.641. Simple example
The following will delete process instance with ID equal to 5
SQL> BPEL.BPEL.instance_delete (5); Done. -- 10 msec.