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: 

show the symbol u00B1 into ABAP report

Former Member
0 Kudos

Dear Abapers,

In my ABAP report:

uline (105).

write: /1 '|', 10 '248 GSM ± 5%', 30 '|',105 '|'.

uline(105).

Heaving no problem in display but when going on to print it is breaking the line character like:

____

|

-

-


I think the problem is the symbol: ± . If I withdraw this it is okay. But I need to show this character in my report.

Can anybody help on about this?

Thanks & B.Rgds

Bishnu

5 REPLIES 5

Former Member
0 Kudos

If you know the system defined name for ± ,

then you can use this syntax:

WRITE: AS SYMBOL.

Thanks

Kiran

You might find the system defined name for this in the smartforms symbols. Give it a try. Not sure !!!

Edited by: kiran dasari on Jul 16, 2009 8:55 AM

0 Kudos

Check include . there is no symbol defined for ± . Instead suggest you to use +/- . If I'm not wrong, that means the same.

Former Member
0 Kudos

> Dear Abapers,

>

> In my ABAP report:

> uline (105).

> write: /1 '|', 10 '248 GSM ± 5%', 30 '|',105 '|'.

> uline(105).

>

> Heaving no problem in display but when going on to print it is breaking the line character like:

> _

> I think the problem is the symbol: ± . If I withdraw this it is okay. But I need to show this character in my report.

I am not sure how did u manage to get this symbol ± in display... ???

Regards,

Suneel G

Former Member
0 Kudos

Hi,

First of all I am confused about how you have got this ± ......secondly it is working absolutly fine on ECC6.0

So what is the problem.

Pooja

Former Member
0 Kudos

Closed