HomeOracleOracle Error PLS-00586: a static method cannot declare a parameter named SELF

Oracle Error PLS-00586: a static method cannot declare a parameter named SELF

Oracle Error Message

PLS-00586: a static method cannot declare a parameter named SELF

Reason for the Error

An attempt was made to name a parameter SELF when declaring a static method. SELF is reserved as a parameter name in methods, to hold the object instance on which the method is applied. A parameter named SELF is not allowed in static methods because static methods do not apply to a particular object instance.

Solution

Change the name of the parameter in the declaration.

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Oracle Error Message CLSGN-32767: Internal error. Reason for the Error An unexpected error occurred. Solution Examine the message(s) that accompany...
Oracle Error Message CLSGN-00211: OCR batch operation failed. string Reason for the Error Setting a set of Oracle Cluster Registry...
Oracle Error Message CLSGN-00210: failed to get value for OCR key “string”. string Reason for the Error It was not...