Author Topic: Marked done email inbound Interaction move to queue  (Read 31400 times)

Offline rsankar402

  • Newbie
  • *
  • Posts: 5
  • Karma: 0
Marked done email inbound Interaction move to queue
« on: March 16, 2018, 11:15:58 PM »
Hello,

Can we move the marked done inbound email interaction to the queue?


Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7622
  • Karma: 56330
Re: Marked done email inbound Interaction move to queue
« Reply #1 on: March 17, 2018, 12:01:03 AM »
Which queue? If it is done then is marked as terminated...so no further action.
Why would you still would like to have further processing?


Enviado de meu E6633 usando Tapatalk


Offline rsankar402

  • Newbie
  • *
  • Posts: 5
  • Karma: 0
Re: Marked done email inbound Interaction move to queue
« Reply #2 on: March 20, 2018, 03:00:02 PM »
Unfortunately developer accepted the production emails and marked as done. So we are trying to move back to queue

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7622
  • Karma: 56330
Re: Marked done email inbound Interaction move to queue
« Reply #3 on: March 20, 2018, 07:54:39 PM »
Ahhh I see
Yes it is possible, search the interactions he has done via his My History and move them to the inbound queue again.


Enviado de meu E6633 usando Tapatalk


Offline rsankar402

  • Newbie
  • *
  • Posts: 5
  • Karma: 0
Re: Marked done email inbound Interaction move to queue
« Reply #4 on: March 21, 2018, 06:28:27 PM »
yeah we tried it but in the strtergy is not handled, so it status is wb_Global error. Is there any other way to handle in the stratergy


qtalal

  • Guest
Re: Marked done email inbound Interaction move to queue
« Reply #5 on: January 21, 2020, 02:58:55 PM »
if you are using IRD try to use "find interaction" block and put a condition like
id = '<ixn id>'

and then save the result in a variable and use it in target block
« Last Edit: January 21, 2020, 03:00:42 PM by qtalal »

Offline Janis

  • Full Member
  • ***
  • Posts: 123
  • Karma: 4
Re: Marked done email inbound Interaction move to queue
« Reply #6 on: January 21, 2020, 04:58:23 PM »
Marked done (terminated) interactions are not in the Interaction Server db anymore. So you can't move it. You have to resubmit interaction to Interaction Server. You can try to use EmailServer to resubmit emails. Direct modifications of UCS db are needed. Please be careful. Start with some test environment.

Code: [Select]
UPDATE [dbo].[Interaction]
   SET [Status] = 1
      ,[CreatorAppId] = <dbid of ESJ app>
      ,[EndDate] = NULL
      ,[StoppedReason] = NULL
      ,[queuename] = <name of the queue>
 WHERE ...

Email Server will find interactions with status=1 and submit as new emails.