Hello all,
my client/server app works fine, but when converted to Web it is ignoring or has no effects whenever I reference an a variable defined in NVO.
For example:
I have n_constant that has some CONSTANT instance variables in it:
constant string cdir_prequal_prequalify = "PRQ"
constant string cdir_prequal_reinstate = "REI"
constant string cdir_prequal_remove = "RMV"
constant string cdir_prequal_renew = "RNW"
Usage in my window:
n_constant in_constant ( defined as instance variable of window)
then... later in window I have code to use these variables i.e.
dw_detail.SetItem(ll_row, "qualify_code", in_constants.cdir_prequal_prequalify )
Right here at this line, web app skips the whole script and does not do anything, I tried to debug this in PB/Client server mode , it DOES work and shows me the value at run time ("PRQ"). But when I debug this Appeon debugger the in_constants is NULL object.
Don't know how Appeon keeps track of Instance variables or objects at run time or something has to do with CONSTANT types.
Thanks.