Hello, I'm testing FOEX Tree Grid in Apex, with some basic departments table using this hierarchichal SQL query:
select dep_id,
parent_dep_id,
short_description
from departments
connect by prior dep_id = parent_dep_id
start with dep_id = 58;
I've mapped the needed columns and left other settings to default:

I get the ‘missing right parenthesis error’ on page load - Any idea why?
