cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Not equal <> sign is missing

Former Member
0 Kudos

It seems for me, the forum can not show the ABAP's not equal sign: <>

Maybe this way: "<" ">"

Not even in the code:

IF sy-subrc <> 0.
MESSAGE ...
ENDIF.

I know it is the same as NE, but it would be good to see this characters also...

Thank you

Tamá

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Or NE

Rob

Former Member
0 Kudos

Someone showed me this once before (guess who?):

if sy-uname (4) &lt;&gt; 'BLAG'.

What you are looking for is => & l t ; & g t ;

(formatting off and spaces added inbetween)

Cheers,

Julius

ThomasZloch
Active Contributor
0 Kudos
hot &lt;&gt; cool

cool.

Former Member
0 Kudos

BTW:


&#X3c;
&#X03c;
&#X003c;
&#X0003c;
&#X00003c;
&#60;
&#060;
&#0060;
&#00060;
&#000060;
&#0000060;
etc...

ThomasZloch
Active Contributor
0 Kudos

Same when you enter ">" in the subject line, the text left from it is omitted in forum overview. Probably has to do with interpretation of HTML tags.

Thomas

former_member184657
Active Contributor
0 Kudos

Ive noticed that phenomena in many subject line of threads too. And I guess you are right about the HTML tags.

pk

If sy-subrc <> 0 <= testing

EDIT: Doesnt work even after I edit my post.

Edited by: prashanth kishan on Oct 14, 2008 9:14 AM

JozsefSzikszai
Active Contributor
0 Kudos

however it works with opposite order

IF sy-subrc >< 0.

also works not in code mode:

IF sy-subrc <> 0.