Oracle Error Message
PLS-00228: Illegal declaration of variable of type LONG
Reason for the Error
The identifier is a formal parameter which is being used in the context of a default expression value for a formal parameter in the same formal parameter list. E.g.: procedure p(j number, k number := j).
Solution
Remove the offending variable definition