Hi Expert,
I have a one page item which is select list type and i have used sql query for the data.Below is my query which is running perfectly if i ran and displaying 707 rows in sql developer. but same query is not working in Apex select list.
query:
select table_name from user_tables ut where not exists (
SELECT
1
FROM
dm_entities
WHERE stg_table=ut.table_name
)
error message: Column "TABLE_NAME" specified for attribute "" has not been found in data source!
Is there any limitation in select list to display data.