I would love to be able to ‘call’ a Function from within a BPM code block,
ie: looping thru data in the code block, I need to ‘do something’ to each row, hence call a function.
This is really easy. There’s lots of threads on this. Essentially the code is just:
string functionLibrary = "TestLib";
string function = "TestFunc";
var result = (Tuple<System.Boolean, System.String>)this.InvokeFunction(functionLibrary,function,Tuple.Create(this.ds));
outputBool = result.Item1;
outputStr = result.Item2;
1 Like
Thank you, have to admit I did not look , and should not have ‘assumed’ - how do you call the function and supply the necessary ‘input parameters’ , if this is possible?
Bill Jackson | Sr. Programmer/Analyst
O: 401-942-8000 X269
1160 Cranston St | Cranston, RI 02920 | TacoComfort.com
Yep, below is one of the threads where there’s examples/discussion about passing in input parameters (using the Tuple input).