Ver Mensaje Individual
  #1  
Antiguo 21-09-2005
jmlifi jmlifi is offline
Miembro
 
Registrado: abr 2005
Posts: 188
Reputación: 20
jmlifi Va por buen camino
Error a la hora de generar un trigger

Trabajo con interbase 5, realizo la siguiente instruccion:

CREATE TRIGGER ACTPEDIDO1 FOR PZALB ACTIVE
AFTER INSERT POSITION 0
as
declare variable n int;
declare variable nPedido int;
begin
select Pedido
from Albaran
where N_Alb=new.N_Alb
into :nPedido;
select Realzdas from pzpedido
where (PzPedido.O_Ped = new.O_Ped) AND
(PzPedido.Pedido = :nPedido)
into :n;
if (n is null) then
n = 0;
if (not new.QA is null) then
n = n + new.QA;
update PzPedido set Realzdas = :n
where (PzPedido.O_Ped = new.O_Ped) AND
(PzPedido.Pedido = :nPedido);
end


Meda el error : XSQLDA index out of range.

¿Como lo soluciono?
Responder Con Cita