Hello,
I miss code completion when I am using public synonyms :
"fnd_user" is the public synonym for "applsys.fnd_user"
Wrong behaviour :
When keying the dot after "select fu", I don't get the column names combo
" select fu.
from fnd_user fu "
Right behaviour :
If I add the schema name, it is right :
" select fu.
from applsys.fnd_user fu "
Any suggestion ?