Not sure if it's this build, or in all; just noticed this.
TESET and TESHOW don't take unless the session is connected. If both are after the connect, it works fine.
In a section, but _before_ a CONNECT, TESET won't put the data in the var. And TESHOW before a CONNECT displays
" !!session data not available!! "
Also, inconsistently, if a variable declared with a default
value is TESHOWed before CONNECTing, the error message and the data both display.
<TEDECLARE sTheClown TEXT data = "BozoNoNo">
<TESECTION putClowny
when tranpath_1 = "clownaround">
<TESHOW sTheClown>
<TEACTION CONNECT "LU_GROUP_1">
<!-- TESHOW sTheClown <- OK here -->
...
</TESECTION>
Yields:
!!session data not available!!BozoNoNo
|