Application Development and Automation 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: 
Read only

ABAP: SmartForm

aneel_munawar
Participant
0 Likes
613

Dear Abappers,

Why & sign is converted into <)>  symbol in smartform.

image is attached.

Regards

Aneel

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
584

double click on the text and goto text editor and u'll see SAP inserts those symbols

Maintain the text using text editor and there would be no problem.

4 REPLIES 4
Read only

Former Member
0 Likes
585

double click on the text and goto text editor and u'll see SAP inserts those symbols

Maintain the text using text editor and there would be no problem.

Read only

FredericGirod
Active Contributor
0 Likes
584

Because the &  is used to specify the content of a variable.

regards

Fred

Read only

alessandroieva
Active Participant
0 Likes
584

Hi,

because & is a special character, also < has the same problem.

you try to use this code:

LOOP AT t_text INTO wa_text.

     REPLACE '<(>&<)>' WITH '&' INTO wa_text-tdline.

   ENDLOOP.

let me know,

AI

Read only

aneel_munawar
Participant
0 Likes
584

Closed.

Thanks to all.