‎2009 Sep 30 8:08 AM
Dear Experts,
I have a requirement to convert smart forms to PDF.
After converting smartforms to PDF, I am getting the following errors.
1. Special signs like u201C&u201D, are shown as <& > in PDF.
2. Some line breaks which are in smartforms are not appearing in the PDF.
(How to handle the same during smartforms to PDF)
Thanks in Advance.
SRI
‎2009 Sep 30 12:57 PM
Hi,
in more than once I´ve experimented the same problem. What I do is to replace the text in my form:
REPLACE ALL OCCURENCES OF '>' IN aux_text WITH '"'.
REPLACE ALL OCCURENCES OF '<' IN aux_text WITH '"'.you can insert a line break like this:
CL_ABAP_CHAR_UTILITIES=>CR_LFbut in both cases you must set a break point in your form where the text is processed to find out what´s wrong. It could be that system cannot understand some characters as HTML escape code. This is the case in web development when working with text boxes.
‎2009 Sep 30 2:11 PM
Hi, <li>Check the link https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54.... Thanks Venkat.O