IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
Expand all | Collapse all

how to delete used process?

  • 1.  how to delete used process?

    Posted 06/10/08 06:49 AM

    hi.

    Now we’re using wm71 with MWS.

    is there any solution to delete used process?

    please advice


    #webMethods
    #webMethods-BPMS
    #BPM


  • 2.  RE: how to delete used process?

    Posted 06/10/08 04:42 PM

    Try Archive and Delete the process instead just Deleting the process…


    #BPM
    #webMethods-BPMS
    #webMethods


  • 3.  RE: how to delete used process?

    Posted 06/10/08 11:03 PM

    But, how do you archive?


    #BPM
    #webMethods
    #webMethods-BPMS


  • 4.  RE: how to delete used process?

    Posted 06/10/08 11:06 PM

    Oh, I got it. It’s in the “Getting_Started_with_Business_Process_Management_7_1.pdf”. Search for “Delete unused”.

    In detail,
    select * from analysis7.bam_pt_process_meta where process_name = ‘%YourProcessName%’

    To find the process you want to delete.


    #webMethods-BPMS
    #BPM
    #webMethods


  • 5.  RE: how to delete used process?

    Posted 06/11/08 02:08 AM

    if it can, could you explain more detail?


    #BPM
    #webMethods-BPMS
    #webMethods


  • 6.  RE: how to delete used process?

    Posted 06/11/08 02:17 AM

    I found Delete unused. but there is no solution.

    how to delete used process? could you explain more detail?


    #BPM
    #webMethods-BPMS
    #webMethods


  • 7.  RE: how to delete used process?

    Posted 06/11/08 03:58 PM

    Did you try

    delete from analysis7.bam_pt_process_meta where process_meta_id = (select process_meta_id from analysis7.bam_pt_process_meta where process_name =‘%YourProcessName%’)

    After this, you should refresh your browser.


    #BPM
    #webMethods
    #webMethods-BPMS


  • 8.  RE: how to delete used process?

    Posted 07/28/08 03:35 PM

    I would recommend, using the Data Managment → Archive link in MWS to remove or archive used process instances.


    #webMethods
    #BPM
    #webMethods-BPMS


  • 9.  RE: how to delete used process?

    Posted 11/13/13 04:47 AM

    For deleting a used process; we have first delete the whole instances that were completed/started or in any status of that particular process. This can be achived by using the below scripts.

    Delete from wmprocessassoc where rootcontextid in(
    Select b.Rootcontextid from wmprocessassoc b,wmprocess a
    where
    a.rootcontextid=b.rootcontextid and
    a.processkey =‘SampleProject/Sample’)

    delete from wmprocessrecent where processkey =‘SampleProject/Sample’

    delete from wmprocessstep where rootcontextid in(
    Select b.rootcontextid from wmprocessstep b,wmprocess a
    where
    a.rootcontextid=b.rootcontextid and
    a.processkey =‘SampleProject/Sample’)

    delete from wmprocess where processkey =‘SampleProject/Sample’

    After running and commiting the above script in ur webMethods schema; Login to MWS as Administrator
    Navigate to Administration>Business>BusinessProcess.
    The process that is to be deleted(Sample) will have enabled check box.Click on the checkbox and click delete.!!


    #BPM
    #webMethods-BPMS
    #webMethods


  • 10.  RE: how to delete used process?

    Posted 12/10/13 08:11 AM

    Hi,

    When ever there is a update/modify/delete being done on a process model, to make the changes effective either restart the Server or reload WmPRT package manually.


    #BPM
    #webMethods-BPMS
    #webMethods