Workflow save method sometimes wont save or save partially


Badge +1

hi, i came across a bizarre malfunction in my workflow,

i have a save method and a task in the same step, because i want to save the step's serial number.
the thing is it usually works, but every now and then the save method do not occur (with no error in  my workflow) or save only part of the fields.
is it possible that the server is heavy loaded and therefore do not manage to retrieve me the serial number hence it wont save?

 


2 replies

Userlevel 3
Badge +9

It is more likely that your inputs into your save method do not match what you think.  Does it call to a stored procedure, or is it writing directly to a table?


 


On the save SmartObject call do you have it configured to continue on error?


 


You could try profiling the database to check the inputs are valid, or add some workflow variables that capture the values of the partially saved fields and use a Set Variables Step to save them before you call the save method, that way you can confirm the inputs at the time it fails to save.  Remove them once you're done though.


 


Cheers

Userlevel 1
Badge +8

Alternatively, you could enable SmartObject logging and then check the generated logs to verify if the SmartObject Save method was executed and what are the inputs passed to the method when the issue does happened.


 


To enable SmartObject logging:


https://help.nintex.com/en-US/k2five/icg/5.5/default.htm#Configure/SmOLogging.htm

Reply