Skip to Content
0
Former Member
Nov 07, 2005 at 06:23 AM

Control Structures "IF" containing arithmetic operator

464 Views

DATA ii TYPE i.
IF ( ii + 1 ) > 2.
  WRITE: / 'more than 2'.
ENDIF.

putting forward this error:

relational operator "+" is not supported

Is there any workaround or I have only left with inline functions and define macros.