2007 Jun 26 3:53 PM
hallow
i wont to now how i can do if statment in this logic
if a and b and c and d is not initial.
end if.
regards
2007 Jun 26 3:58 PM
Hi,
data : a type i,
b type i,
c type i,
d type i.
if a ne ' ' and b ne ' ' and c ne ' ' and d ne ' '.
endif.Regards
Aneesh.
2007 Jun 26 3:58 PM
Hi,
data : a type i,
b type i,
c type i,
d type i.
if a ne ' ' and b ne ' ' and c ne ' ' and d ne ' '.
endif.Regards
Aneesh.
2007 Jun 26 4:01 PM
HI,
Try this..
if a is not initial and b is not initail and c is not initail and d is not initial.
endif.
Regards,
kamal
2007 Jun 26 4:05 PM
2007 Jun 26 4:05 PM
Hi,
Try like this:
if (a is not initial) and (b is not initial) and (c is not initial) and (d is not initial).
...
endif.
Regards,
Bhaskar
2007 Jun 26 4:06 PM
Hi,
IF NOT ( a IS INITIAL OR
b IS INITIAL OR
c IS INITIAL OR
d IS INITIAL ).
ENDIF.
Regards,
Ranjit Thakur.
<b>Please Mark The Helpful Answer.</b>