2008 Dec 18 7:59 AM
Hi guys,
Is there anything to note when using E NE combination for Ranges? How do this combination works?
Sample code:
r_matkl-sign = 'E'.
r_matkl-option = 'NE'.
r_matkl-low = '12345'.
r_matkl-high = space.
APPEND r_matkl.
2008 Dec 18 8:07 AM
This combination is same as:
r_matkl-sign = 'I'.
r_matkl-option = 'EQ'.
r_matkl-low = '12345'.
r_matkl-high = space.
APPEND r_matkl.
Hi guys,
Is there anything to note when using E NE combination for Ranges? How do this combination works?
Sample code:
r_matkl-sign = 'E'.
r_matkl-option = 'NE'.
r_matkl-low = '12345'.
r_matkl-high = space.
APPEND r_matkl.
2008 Dec 18 8:07 AM
This combination is same as:
r_matkl-sign = 'I'.
r_matkl-option = 'EQ'.
r_matkl-low = '12345'.
r_matkl-high = space.
APPEND r_matkl.
2008 Dec 18 8:28 AM
HI Vijay,,,
it seems that its not...
i dunno if ABAP gets confused with this kind of combination...
shed light please..
2008 Dec 18 9:15 AM
I EQ combinatin = Select: Equal to
E NE combination = Dont Select: Not equal to
both are equivalent
it is same as A = Not(NOt (A))