Hi,
Which of this is a better way of constructing a logical expression and Why?
option 1:
IF NOT lv_number IS INITIAL.
ENDIF.
option 2:
IF lv_number IS NOT INITIAL.
Thanks.