‎2014 Oct 29 8:45 AM
Dear Abappers,
Why & sign is converted into <)> symbol in smartform.
image is attached.
Regards
Aneel
‎2014 Oct 29 8:55 AM
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.
‎2014 Oct 29 8:55 AM
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.
‎2014 Oct 29 8:56 AM
Because the & is used to specify the content of a variable.
regards
Fred
‎2014 Oct 29 8:59 AM
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
‎2014 Oct 29 9:09 AM