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
763

Dear Abappers,

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

image is attached.

Regards

Aneel

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
734

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
735

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
734

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

regards

Fred

Read only

alessandroieva
Active Participant
0 Likes
734

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
734

Closed.

Thanks to all.