I have a many to many relationship and am using a 3rd table to link the other two. In a NetWebBrowse I want to filter if there is a record in the link table. To do this, I have a source procedure, TagLink(string xTagRecordID, string xMyRecordID), LONG. This procedure returns a 1 if there is a link between the two tables.
My filter is: 'TagLink(TAG:TagID, p_web.GSV(<39>OBJ:ObjectID<39>)) = 1'
I am assuming I need to do a BIND('TagLink', TagLink) at the beginning of NetWebBrowse procedure so that it will work correctly in the filter. However, C10 is giving me the following compile error on the BIND line of code.
Attribute variable must have string type
Is there a different way to do this or am I missing something on BIND?
Thank you for your assistance.
David