MonDeveloper
Member
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
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