Hi All,
I have SessionID defined in a In Memory table in my dictionary as STRING(256). Normally I would define it as a CSTRING but for some reason I did not (I think I read it somewhere).
Anyway, in my NetWebBrowse I defined filter as:
'WQUD:SessionID = ' & p_web.SessionID
and I tried
'WQUD:SessionID = <39>' & p_web.SessionID &'<39>'
Neither wants to work, so added the following in the Validate Record Embed point:
if clip(WQUD:SessionId) <> clip(p_web.SessionID) then cycle.
Which then work. So the question is, can I perhaps FIX the filter?
Thanks
Charl