Genesys CTI User Forum
Verint User Forum => Verint Technical Discussion => Topic started by: rsankar402 on March 16, 2018, 02:15:58 PM
-
Hello,
Can we move the marked done inbound email interaction to the queue?
-
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
-
Unfortunately developer accepted the production emails and marked as done. So we are trying to move back to queue
-
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
-
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
-
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
-
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]UPDATE [dbo].[Interaction]
SET [Status] = 1
,[CreatorAppId] = <dbid of ESJ app>
,[EndDate] = NULL
,[StoppedReason] = NULL
,[queuename] = <name of the queue>
WHERE ...[/code]
Email Server will find interactions with status=1 and submit as new emails.