ClassName

atg.markers.bp.droplet.RemoveBusinessProcessStage

Component(s)

/atg/markers/bp/droplet/RemoveBusinessProcessStageDroplet

This servlet bean removes existing business process stage markers that match the stage specified.

Input Parameters

businessProcessName
The name of the business process. Defaults to the servlet bean’s defaultBusinessProcessName property. Setting the defaultBusinessProcessName property lets you create instances of the servlet bean that are specific to a single business process.

businessProcessStage (required)
The stage within the business process. Rather than specifying markers for a particular stage, you can remove all markers from a given process by setting this parameter to the ANY_VALUE property as follows:

<dsp:param name="businessProcessStage"
  bean="RemoveBusinessProcessStageDroplet.ANY_VALUE"/>

Output Parameters

errorMsg
The error message describing a failure.

markerCount
The number of stage reached markers removed.

Open Parameters

output
Rendered on successful completion.

error
Rendered on error.

Example

This example removes a ShippingPriceViewed stage:

<dsp:droplet name="RemoveBusinessProcessStageDroplet">
  <dsp:param name="businessProcessName" value="ShoppingProcess"/>
  <dsp:param name="businessProcessStage" value="ShippingPriceViewed"/>
</dsp:droplet>

This example removes all shopping process stage markers that are found:

<dsp:droplet name="RemoveBusinessProcessStageDroplet">
  <dsp:param name="businessProcessName" value="ShoppingProcess"/>
  <dsp:param name="businessProcessStage"
   beanvalue="RemoveBusinessProcessStageDroplet.ANY_VALUE"/>
</dsp:droplet>
 
loading table of contents...