NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: John Fligg on April 11, 2012, 02:45:10 PM
-
On an update form I have a filter in my auto complete template:
'Pat:ContactGUID= ' & p_web.GSV('Inv:ContactGUID')
However it is not working as expected. Where would I put a trace statement to monitor the value of the filter?
Thanks
John
-
right click on the procedure in the IDE tree.
choose Source.
Search for the code you mentioned, to see where it is used.
From there select an embed point.
Cheers
Bruce
-
Thanks Bruce. Well unless I am wrong it seems that the auto complete filter is not working.
Looks like another example is required.
John
-
is ContactGuid a string?
If so, the obvious problem is that you're missing the quotes.
'Pat:ContactGUID= <39>' & p_web.GSV('Inv:ContactGUID') & '<39>'
cheers
Bruce
-
Yes Bruce - I should have posted I had realised that immediately after my post.
I am still in the C6 days where ID is long whereas GUID used for NT6 is a string.
John