Hi, i have a grid application like this:
key - SSN
key - SSN
Now i want to link the save the key of each record on a global variable to make a query like this when i click a button:
SELECT * FROM people AS p JOIN coll_key AS c on p.ssn = c.ssn where c.key = 1;
but i don’t find a way to pass a single global_variable (one key in this case) on a grid. I don’t have problem on form… please help me…