Ver Mensaje Individual
  #2  
Viejo 14/03/07, 16:35:02
Avatar de mysmb2
mysmb2 mysmb2 is offline
Senior Member
 
Fecha de Ingreso: ene 2007
Localización: Cordoba
Mensajes: 406
Thumbs up

proba pasar la tabla a otra temporal y asi comparas entre dos temporales.

un ejemplo:

tables bkpf.

data: begin of t_bkpf occurs 0.
include structure bkpf.
data: end of t_bkpf.

data: begin of t_2bkpf occurs 0.
include structure bkpf.
data: end of t_2bkpf.

select * from bkpf into table t_2bkpf.


if t_bkpf[] = t_2bkpf[].
write 'iguales'.
else.
write 'distintas'.
endif.
Responder Con Cita