In Quick Fields 9, I' ve added a real time Processes in order to simulate a lookup from my DB.
I want the user to key in the beginning of a name and get it from the DB.
I used a simple Request to find the first match :
SELECT TOP 1 Name FROM [dbo].[Supplier] WHERE UPPER(Name) LIKE '%' + UPPER(?) +'%'
In the "Configure Result Action" I used %(Column.Name) as Value.
But it doesn't work. I've tested the request it was good so the issue should be in the "Configure Result Action"
Is the formatting good ?
Thanks