Updates:
Status: Pending
Comment #1 on issue 1094 by pekka.klarck: Java error when embedding
arguments in keyword name.
http://code.google.com/p/robotframework/issues/detail?id=1094
I looked at the log file and didn't see any fatal JRE errors there. Where
did they occur?
There is, however, a problem in your test case. Because you created a
keyword with name
kSelect "${text}" from "${ID}"
you should also use it so that there are quotes, for example, like
kSelect "${var3}" from "lmi_SimpleMemoControl_0"
Alternatively you could leave quotes away from your keyword name, but then
it is more likely that there are clashes with multiple keywords matching
same name.