I have a table of elements, each of which refers to a different element in a different table. We say that objects are people, and related objects are favorite products.
Table A: Bob: 1, Sally: 1, Sue: 3
Table B: 1: Apples, 2: Bananas, 3: Oranges
People are tied to their favorite "products" using the RecId products listed in the People table.
I have a form / grid for editing people. Is there a way to get the FoodRecId StringView in the grid to convert its value so that the RecId numbers are not visible in the grid?
I already wrote multi-column queries to easily cope with creating the right relationships, but if RecIds in the grid could be hidden / replaced, the form would be much easier to use.
source
share