ORA-25000

Error: ORA-25000: invalid use of bind variable in trigger WHEN clause

Causa: A bind variable was used in the when clause of a trigger.

Acción: Remove the bind variable. To access the table columns use (new/old).column_name.

COMENTARIOS:

por David | 19/04/2010 07:17:53

RE: ORA-25000

Tenía algo como esto:
WHEN ( :new.ESTADO is null)
Simplemente es quitar los dos puntos:
WHEN ( new.ESTADO is null)