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

Former Member
0 Likes
761

Dear Abappers,

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

image is attached.

Regards

Aneel

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
732

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.

Dear Abappers,

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

image is attached.

Regards

Aneel

4 REPLIES 4
Read only

Former Member
0 Likes
733

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
732

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

regards

Fred

Read only

alessandroieva
Active Participant
0 Likes
732

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

Former Member
0 Likes
732

Closed.

Thanks to all.