Hi,
Popup Lov returns 'No results found.' when a page item value is used in the SQL query as List of Values in Apex version 22.1.1. Patch 34020981 is already applied.
For example,
p123_dep_id is a page item that holds the department id. (Say 100)
And Popup LOV is,
SELECT first_name
FROM employees
WHERE department_id = :p123_dep_id
It doesn't return any values.
If I hardcode the value 100 instead of the page item, it returns the desired output.
Any help is appreciated.
Thank You.