Using the skip condition available in the activities configuration, you have flexibility to skip activities based on a condition as under,
Create a process level variable in BPEL process as under,<variables>
<variable name="skip" type="xsd:int"/>
</variables>
Update the variable "skip" equals 1 to skip the activitiesUpdate the activity configuration by using the "Skip Condition" tab and put the value as skip=1The benefit of using this conditional skipping is designing managable and readable BPEL processes.
1 comment:
great tip! thanks!
Post a Comment