Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

RestartTask Workflow SOAP Calls Failure

Avatar

Level 2

Hi,

I am having an issues getting the below JavaScript to run. It continuously fails. Please could you assist?

JavaScript Code

Within the JavaScript code activity is the below script:

xtk.workflow.RestartTask("WKF36072", "fork");

1645050_pastedImage_0.png

Adobe Documentation

https://docs.campaign.adobe.com/doc/AC/en/jsapi/sm-workflow-RestartTask.html?hl=restarttask

Error logs

12/12/2018 15:54:42 JavaScript: error while evaluating script 'WKF36344/js'.

12/12/2018 15:54:42 Error while executing the method 'RestartTask' of service 'xtk:workflow'.

12/12/2018 15:54:42 W0.iTaskIdentifier DESC' could not be executed.   Param(0)=Hello   Param(1)=fork   Param(2)=1

12/12/2018 15:54:42 SQL statement 'SELECT   W0.iWorkflowTaskId, W1.sInternalName, W1.iStatus, W1.mData FROM XtkWorkflowTask W0 JOIN XtkWorkflow W1 ON (W1.iWorkflowId = W0.iWorkflowId) WHERE (W0.iWorkflowId = :#(1)# AND W0.sActivity = :#(2)# AND W0.iStatus = :#(3)#) ORDER BY

12/12/2018 15:54:42 PostgreSQL error: ERROR:  invalid input syntax for integer: "Hello" LINE 1: ...kflowId = W0.iWorkflowId) WHERE (W0.iWorkflowId = E'Hello' A...                                                              ^

Thanks,

Rob

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi Robert,

The 1st parameter must be an integer, it means the workflow.id (the primary key value) not the workflow internal name.

Regards
J-Serge

View solution in original post

3 Replies

Avatar

Correct answer by
Level 10

Hi Robert,

The 1st parameter must be an integer, it means the workflow.id (the primary key value) not the workflow internal name.

Regards
J-Serge

Avatar

Level 10

hum, sorry, strange the documentation says that both identifier and internal name are supported.

Avatar

Level 2

Amazing, thank you for the answer and quick response!

That works now using the workflow PK, thought it was odd the error wanted an integer.

This must be a mistake in the documentation!