‎2008 Feb 20 9:55 AM
Whats the difference between:
IF var IS NOT INITIAL.
ENDIF
and
IF NOT var IS INITIAL.
ENDIF
‎2008 Feb 20 10:01 AM
no diference
very minute
IF var IS NOT INITIAL.
ENDIF
this directly check whether it is not initial
and
IF NOT var IS INITIAL.
ENDIF
this first check first var is initial then not is added (opposite value is considere)
‎2008 Feb 20 10:02 AM
The "if XXX is not initial" statement is not valid in 4.6c versions of SAP.
That is why these kind of statements were removed from the generated source code
+and changed to "if not XXX is initial".+