select clause "WITH" cause hidding procedure name in Package editing

Hi,
when within a Package I write the WITH select clause instantly disappear the procedure (or function) list on the left.

For example, my pkg have within own body this select:
select column_a
into var_a
from table a
where column_b=column_c;


If I change my conde to:
with sel_X as (select column_a
from table a
where column_b=column_c)
select column_a
into var_a
from sel_X;


The contents list on the left disappear....

I think it's a bug, do you know a workaround ? may be through the preferencies menu ?
Please let me know a solution, my developers are becoming crazy...

Monducci Marco
CRIF
 
This works fine for me. Are you using the latest 6.0.5 release? If so, can you send me the package body source file by e-mail?
 
Back
Top