Version 4.2.0.16.356
So I have a column named: edi_ref_id
If I do a search using Find Database Objects. Everything is checked: All Objects Types, Al Identifiers Types, etc.
Type the name, choose the connection and hit go.
It brings results from tables and code. But not from the sql of the Views.
I mean:
create or replace view myview as ( select edi_ref_id from arsedi);
Will show edi_ref_id in the results.
However:
create or replace view myview2 as ( select nvl(edi_ref_id,'810') ref_id from arsedi);
Will not show in the results.
I think it should show it.