‎2006 Jun 22 8:16 PM
Hi,
I want to write something only if itabA[] or itabB[] is not initial.
I tried:
If not ( itabA[] or itabB[] ) is initial.
write: etc etc.
endif.
Giving me syntax error, can you plz correct the above?
Thanks.
‎2006 Jun 22 8:17 PM
if not itaba[] is initial or
not itabb[] is initial.
do something
endif.
‎2006 Jun 22 8:17 PM
if not itaba[] is initial or
not itabb[] is initial.
do something
endif.
‎2006 Jun 22 8:20 PM
‎2006 Jun 22 8:22 PM
hi Nuren
do this way
if ( not itaba[] is initial ) or
( not itabb[] is initial ).
do something
endif.
Regards,
santosh
‎2006 Jun 22 8:21 PM
if not itabA[] is initial.
write:/ etc.
else if not itabB[] is initial.
write:/ etc.
else.
write:/ 'both are initial'.
endif.
thanks,
kiran.M