PLS-00230: OUT and IN OUT formal parameters may not have default expressions
Cause: When the formal parameters of a procedure were declared, an OUT or IN OUT parameter was initialized to a default value, as in: PROCEDURE calc_bonus (bonus OUT REAL := 00000, ...) IS ... However, only IN parameters can be initialized to default values.
Action: Remove the illegal default expression.