PLS-00225: subprogram or cursor 'string' reference is out of
scope



PLS-00225: subprogram or cursor 'string' reference is out of scope..

Answer / guest

Cause: The prefix in a qualified name was a subprogram or
cursor which was not in an enclosing scope; i.e., a
subprogram or cursor name is being used as a scope qualifier
for a reference to an entity (within that subprogram or
cursor) that is not in scope. Example: declare x number;
type t1 is record (a number); function f return t1 is a
number; begin x := f.a; -- legal use of function "f" as a
scope qualifier; -- resolves to local variable "a" in
function "f". x := f().a; -- legal reference to component
"a" of returned record end; begin x := f.a; -- illegal use
of function "f" as a scope qualifier x := f().a; -- legal
reference to component "a" of returned record end;

Action: a) if the intention was to refer to a local variable
of a non-enclosing function, this is not allowed; remove the
reference b) if this is a parameterless function, and the
the intention was to access a field of the result of a call
to this function, then use empty parentheses in the call.

Please add more information about this Error

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle Errors Interview Questions

NNO-00251: missing administrative region parameter string

1 Answers  


ORA-07848: sllfrb: $GET failure

1 Answers  


NNO-00157: warning: hint number has invalid address, hint ignored

1 Answers  


ORA-29508: query derived from USING clause did not select a value of type string

1 Answers  


LSX-00145: attribute "~1S" invalid derived value "~2S"

1 Answers  


ORA-24316: illegal handle type

1 Answers  


ORA-13146: could not find table substitution variable string

1 Answers  


EXP-00098: Data in table has not been upgraded, table will not be exported

1 Answers  


TNS-00205: Turning off tracing in intlsnr

1 Answers  


ORA-08206: ora_addr: cannot translate address file name

1 Answers  


DRG-50608: unexpected end of data

1 Answers  


PLS-00537: A VARRAY must have a positive limit

1 Answers  


Categories