Question Dhaval Shah · Jan 15, 2019 How to kill instances of a business process? #Business Process (BPL) #Development Environment #Management Portal #Caché #Documentation #Ensemble Friends , can anyone help in how to kill instances of a business process? We have searched the documentation and looked in the Production, We am not seeing how to perform this task. 0 0 298
Marc Mundt · Jan 15, 2019 You can stop a business process completely (along with all other components) by stopping the production:https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...To only stop a specific business process, you can disable that specific component:https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...You can also view the status of and manage individual jobs that are doing processing for the business process:https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY... Cliff Akers · Jan 17, 2019 To terminate Business Process Instances:Go to Interoperability->Business Process Instances, then note the ID of the instances you wish to kill.Open terminal and run the following: s obj = ##Class("Ens.BusinessProcess").%DeleteId(ID), where ID is the numeric value from step 1
Cliff Akers · Jan 17, 2019 To terminate Business Process Instances:Go to Interoperability->Business Process Instances, then note the ID of the instances you wish to kill.Open terminal and run the following: s obj = ##Class("Ens.BusinessProcess").%DeleteId(ID), where ID is the numeric value from step 1
You can stop a business process completely (along with all other components) by stopping the production:
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
To only stop a specific business process, you can disable that specific component:
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
You can also view the status of and manage individual jobs that are doing processing for the business process:
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
To terminate Business Process Instances:
s obj = ##Class("Ens.BusinessProcess").%DeleteId(ID)
, where ID is the numeric value from step 1