Clarity

  • 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