Hi there,
I have a package specification (const) with some constants, e.g.
If I try to select this constant (even with a simple
) I get the following error:
ORA-06553: PLS-221: 'C_YES' is not a procedure or is undefined
While I can remember this special constant
, it's very time consuming to always to have to look up any constants in any selects I want to run..
Can anybody help me with this problem?
Thx,
Christine
I have a package specification (const) with some constants, e.g.
Code:
c_yes CONSTANT VARCHAR2 (1) := 'Y';
Code:
select const.c_yes from dual;
ORA-06553: PLS-221: 'C_YES' is not a procedure or is undefined
While I can remember this special constant

Can anybody help me with this problem?
Thx,
Christine