Hi Rob,
Thanks for your information.
Yes Cleaning the environnement is possible by using the Database Configurator and “recreate” some schemes.
I did it … but it cleans everything ! 
Well it seems that we have another possibility. I copy/Paste something here but for the moment I don’t test it :
Go to DB tables WMGENERATIONRECEIPT, WMPROCESS, WMPROCESSRECENT, WMSTEPDEFINITION, WMSTEPTRANSITIONDEFINTION and delete process instances.
First Search the PROCESS_NAME with
select * from WMGENERATIONRECEIPT
Have a look on your DATA, in production please make a backup of them
select * from WMGENERATIONRECEIPT where PROCESSKEY = ‘PROCESS_NAME’
select * from WMPROCESS where PROCESSKEY = ‘PROCESS_NAME’
select * from WMPROCESSRECENT where PROCESSKEY = ‘PROCESS_NAME’
select * from WMSTEPDEFINITION where PROCESSKEY = ‘PROCESS_NAME’
select * from WMSTEPTRANSITIONDEFINITION where PROCESSKEY = ‘PROCESS_NAME’
Delete what you need in this sequence
– Erase Live DATA
delete from WMPROCESS where PROCESSKEY = ‘PROCESS_NAME’
delete from WMPROCESSRECENT where PROCESSKEY = ‘PROCESS_NAME’
– Erase Definition
delete from WMSTEPTRANSITIONDEFINITION where PROCESSKEY = ‘PROCESS_NAME’
delete from WMSTEPDEFINITION where PROCESSKEY = ‘PROCESS_NAME’
delete from WMGENERATIONRECEIPT where PROCESSKEY=‘PROCESS_NAME’
#webMethods-BPMS#webMethods#BPM