RE: Error in Package

2001-12-19 Thread Ramon Estevez
of list ORACLE-LAsunto: RE: Error in Package Check the definition for COMPROBANTES_RECORD and the SELECT statement.   You have one extra column AGENCIA   in the record which is not in the SELECT..   Yuval. -Original Message-From: Ramon Estevez [mailto

RE: Error in Package

2001-12-19 Thread Yuval Arnon
Check the definition for COMPROBANTES_RECORD and the SELECT statement.   You have one extra column AGENCIA   in the record which is not in the SELECT..   Yuval. -Original Message-From: Ramon Estevez [mailto:[EMAIL PROTECTED]]Sent: Wednesday, December 19, 2001 2:13 PMTo: Mul

RE: Error in Package

2001-12-17 Thread Ramon Estevez
of list ORACLE-LAsunto: RE: Error in Package Ramon,   You've declared the Procedure SELECCIONAR differently in the package spec and body.  Oracle must think you're creating an overloaded procedure with different arguments for each version.  The spec and body declarations

RE: Error in Package

2001-12-17 Thread Ramon Estevez
of list ORACLE-LAsunto: Re: Error in Package If you define the type of your parameters as 'table_name.column_name%TYPE' in package header, then in package body you should do the same, and not use explicit data type (like 'NUMBER').   Igor Neyman, OCP

RE: Error in Package

2001-12-17 Thread Jack C. Applewhite
Ramon,   You've declared the Procedure SELECCIONAR differently in the package spec and body.  Oracle must think you're creating an overloaded procedure with different arguments for each version.  The spec and body declarations must match.   Jack Jack C. Apple

Re: Error in Package

2001-12-17 Thread Igor Neyman
If you define the type of your parameters as 'table_name.column_name%TYPE' in package header, then in package body you should do the same, and not use explicit data type (like 'NUMBER').   Igor Neyman, OCP DBA[EMAIL PROTECTED]  - Original Message - From: Ramon Estevez To:

RE: Error in Package

2001-12-17 Thread Jamadagni, Rajendra
The definition of following procedure in package spec PROCEDURE SELECCIONAR (PCOMPROBANTESQRY IN OUT COMPROBANTES_REFCURSOR, PGRUPOIN COMPROBANTES.GRUPO%TYPE, PCOMPANIA IN COMPROBANTES.COMPANIA%TYPE, PTIPO_COMPROBANTE IN COMPROBANTES.TIPO_COMPROBANTE%T