Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

re: small doubt

Former Member
0 Kudos

Hi,

if a >< '20051117'.

message i000(zen).

endif.

what is >< meaning.

rgds

p.kp

7 REPLIES 7

Former Member
0 Kudos

Hi paluri,

>< means "Not Equal To"

It is the same as <>.

Regards,

Amit M

Former Member
0 Kudos

its means if a is not equal to 20051117.

Former Member
0 Kudos

Hi Paluri,

>< means 'NOT EQUAL TO '

<> and >< both are same.

Regards,

Baburaj

Former Member
0 Kudos

hi...

<> wud mean not equals to...

even i wud like to know wot >< means..???

regards...

vishal

Former Member
0 Kudos

HI paluri krishna prasad

Meaning of bot ( <> , >< ) is NOT EQUAL TO.

Just Run this Code.It will clear all your doubt.

REPORT  ZVKRTEST.
DATA:  abc type i value 12345.

if abc <> 222.
write: 'abc <> 12345 (NOT EQUAL TO)'.
endif.

if abc >< 222.
write: 'abc >< 12345 (NOT EQUAL TO)'.
endif.

Cheers,

Vijay Raheja

Former Member
0 Kudos

Hi Paluri;

>< is Logical Operator used in ABAP which means "Not Equal To"

<b>operator meaning</b>

<b>EQ</b> means 'equal to'

<b>=</b> means 'equal to'

<b>NE</b> means 'not equal to'

<b><></b> means 'not equal to'

<b>><</b> means 'not equal to'

<b>LT</b> means 'less than'

<b><</b> means 'less than'

<b>LE</b> means 'less than or equal to'

<b><=</b> means 'less than or equal to'

<b>GT</b> means 'greater than'

<b>></b> means 'greater than'

<b>GE</b> means 'greater than or equal to'

<b>>=</b> means 'greater than or equal to'

You can use these condition operators in the condition check..

Cheers....close the thread if it helped you..

Former Member
0 Kudos

I have the doubt for another operator

'Z' what does it mean it is used some where in the following FM:

COMPLEX_SELECTIONS_DIALOG (Used for select-options to provide the range)