Facing this issue while saving the data in the DB....
Anyone help...
Discussion posts and replies are publicly visible
om786 Did you find the solution? I am having this issue in a script task node.
Reason is Data inputs is returning multiple outputs. Please check all Activity class parameters that they do not return multiple outputs.
Incorrect
a!localVariables( local!var1: 10, local!var2: 30, local!sum: local!var1 + local!var2, { local!sum })
Correct
a!localVariables( local!var1: 10, local!var2: 30, local!sum: local!var1 + local!var2, local!sum )
The example seems to be a misfit here but I got the point. Thanks.