Stop one workflow in the application server | Community
Skip to main content
New Participant
May 18, 2018
Solved

Stop one workflow in the application server

  • May 18, 2018
  • 6 replies
  • 5072 views

Hi guys - is there a way to stop one particular workflow from the applications server? Thanks!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by gigi_jin

Thanks all for taking your time to respond to this question.

Just a follow-up here: I've managed to delete the workflow in question by using SQL code activity in a workflow.

It worked like a charm

6 replies

gigi_jinAuthorAccepted solution
New Participant
September 7, 2018

Thanks all for taking your time to respond to this question.

Just a follow-up here: I've managed to delete the workflow in question by using SQL code activity in a workflow.

It worked like a charm

Amit_Kumar
New Participant
July 4, 2018

Use xtk.worfklow.Stop.Kill it will solve your problem.

Adhiyan
Employee
July 4, 2018

HI Gigi,

In Such cases , the best way is to kill it on the Database directly. You need to get the pid for the query and then stop / kill that pid from the Database.

If the instance is hosted by Adobe , raise a support ticket , else ask your DBA to kill the workflow but providing the primary keys.

Regards,

Adhiyan

Gaurang-1
New Participant
July 4, 2018

Hi,

Were you able to find something relevant for your query here?

Gaurang

gigi_jinAuthor
New Participant
May 19, 2018

Thanks for your help.

Basically this workflow is on pause status and the workflow supervisors have been receiving notification emails everyday. So they wanted to shut this workflow down completely.

Option 1 and 2 are not working in my case, because whenever the workflow is selected it crashes the client console. Hence I have to do it from the backend.

I also used xtk.worfklow.Stop but it didn't work because the workflow status was changed from 'paused' to 'stop requested' and then back to 'pause' again.

New Participant
May 19, 2018

Hi,

You can stop a workflow by many ways :

  • By manual
  • Unconditional stop(Only use the unconditional stop if you are sure there are no actual workflow jobs in progress)
  • From back end (to do this you should know the value of Stop attribute of the workflow schema )
  • Using Java Script (xtk.workflow.Stop(WorkFlowId)

Thanks !