Using a scriptcase form based on tableA.
It has many fields all entered by the user - except for one field (codename) that is filled from a select. I need to select into that form field a concatenation of codename with a number, both from a single record in tableB
tableA.codename varchar(24) tableB.codename varchar(16) tableB.nextnumber int
I use the Scriptcase Lookup : -
select codename, concat(codename," ", nextnumber) from codename order by codename
I get an onscreen view upon selecting “xyz 12” but the database result on save is “xyz”
Who knows the answer to this?