Debug a method created at runtime

Is there a way to debug a method that was created in solutionModel at runtime?
I’m creating a method with the help of solutionModel.getForm(name).newFormMethod(code);
‘code’ is a string containing the function’s actual code. Want to debug it but don’t know how :oops:

Any suggestions are welcome.

Cheers,
Maria

What I’m trying to do is manipulate another form’s variable from that code and I’m not sure if it’s legitimate though I can’t see why it wouldn’t be…

maria:
Is there a way to debug a method that was created in solutionModel at runtime?
I’m creating a method with the help of solutionModel.getForm(name).newFormMethod(code);
‘code’ is a string containing the function’s actual code. Want to debug it but don’t know how :oops:

Any suggestions are welcome.

Cheers,
Maria

application.output should help you

lvostinar:

maria:
Is there a way to debug a method that was created in solutionModel at runtime?
I’m creating a method with the help of solutionModel.getForm(name).newFormMethod(code);
‘code’ is a string containing the function’s actual code. Want to debug it but don’t know how :oops:

Any suggestions are welcome.

Cheers,
Maria

application.output should help you

Yeah, right. Thanks)