by VAD_Support » Tue Jan 04, 2011 11:50 pm
Hi,
When an exception happens, you can log the error using the project properties (project$.CurrentErrorName$ and project$.CurrentErrorDescription$). But in the error log you mentioned, you're using callflow$. Those properties are project variables, and not callflow variables.
In order to get the error you previously mentioned, you need to manually enter "callflow$.XXXX" as a javascript expression, where XXXX is an invalid property name. If you choose a variable name from the Expression Editor you will probably avoid that kind of errors.
The expression editor allows entering any javascript expression, and it can not evaluate it at compile time, so you may get that kind of runtime errors if you enter an invalid expression there. You need to be very careful when entering that kind of expressions.