Clarity

 View Only

  • 1.  Error Processes to be removed

    Posted Jan 13, 2014 07:53 AM

    Hello PPM Folks,

    Hope every body is doing good.

    I have one concern regading Processes, is there any process or method to cancel or delete the Error process every weekend directly.

    Or do we can write such process to check and clean the process directly from organizer in CA Clarity automatically!

    Thanks in Advance

    Awadhesh



  • 2.  RE: Error Processes to be removed
    Best Answer

    Posted Jan 20, 2014 11:23 PM

    There is no process in Clarity that will abort and delete the process.

    What you can do is run a process that makes a call to BPM_RUN_PROCESSES every so often like below:

    UPDATE BPM_RUN_PROCESSES SET STATUS_CODE = 'BPM_PIS_ABORTED' WHERE STATUS_CODE = 'BPM_PIS_ERROR'

    Then, you call call the clarity process "Delete Process Instance" with the ones that you want to clean out periodically.

    This code has not been fully tested.

    Hope this helps!

    Chris



  • 3.  RE: Error Processes to be removed

    Posted Feb 26, 2026 04:35 AM

    Can someone confirm that the UI "cancel" process action is the same than set STATUS_CODE = 'BPM_PIS_ABORTED' ?

    -------------------------------------------



  • 4.  RE: Error Processes to be removed

    Posted Mar 09, 2026 02:54 AM

    Hi Daniel, cancelling through the UI will move them to BPM_PIS_ABORTING and eventually transition them to BPM_PIS_ABORTED, in some rare cases especially if they have a long running action, it might take time for them to move to the final state of ABORTED

    -------------------------------------------