How to fix the Oracle error PLS-00227: subprogram ‘in’ formal string is not yet denotable?

In this post, you’ll learn more about the Oracle ErrorPLS-00227: subprogram ‘in’ formal string is not yet denotable with the details on why you receive this error and the possible solution to fix it.

Oracle Error Description

PLS-00227: subprogram ‘in’ formal string is not yet denotable

Reason for the Error PLS-00227: subprogram ‘in’ formal string is not yet denotable

When the formal parameters of a subprogram were declared, one parameter was used to initialize another, as in PROCEDURE my_proc (j NUMBER, k NUMBER := j) IS … The first parameter has no value until run time, so it cannot be used to initialize another parameter.

How to fix the Error PLS-00227: subprogram ‘in’ formal string is not yet denotable ?

You can fix this error in Oracle by following the below steps

Remove the illegal formal parameter reference.

Tags :

Leave Your Comment