Quick Search:
 
 Oracle Database Error: PLS-00323      [Return To Oracle Error Index] Jump to:  
Oracle Error: PLS-00323

Error Description:
Subprogram or cursor "string" is declared in a package specification and must be defined in the package body

Error Cause:
A subprogram specification was placed in a package specification, but the corresponding subprogram body was not placed in the package body. The package body implements the package specification. So, the package body must contain the definition of every subprogram declared in the package specification.

This can be also caused by argument data type mismatch, argument order of implementation or count. The signatures (everything above key word IS) must match exactly in the specification and body of public procedures and functions in your package.

Action:
1) Check the spelling of the subprogram name. If necessary, add the missing subprogram body to the package body.
2) Verify the argument count, order, and data types match in Package Specification and Body.


There haven't been any comments added for this error yet. You may add one if you like.  Add a comment 
 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org