cancel
Showing results for 
Search instead for 
Did you mean: 

junk characters in smartform

Former Member
0 Kudos

I am getting the junk characters in smartform. Not only the field names, the data which is coming from database also. In Engligh also, it's displaying junk characters only. The output type is E-MAIL. Sending PDF document as E-Mail. could anybody help regarding this issue.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Have seen these things in debugging mode?

If 'YES' when it converts OTF to PDF it will show like that only.

IF 'NO' may be probelm at this area...

  • Transfer the 132-long strings to 255-long strings

LOOP AT it_pdf_output.

TRANSLATE it_pdf_output USING ' ~'.

CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.

ENDLOOP.

TRANSLATE gd_buffer USING '~ '.

DO.

it_mess_att = gd_buffer.

APPEND it_mess_att.

SHIFT gd_buffer LEFT BY 255 PLACES.

IF gd_buffer IS INITIAL.

EXIT.

ENDIF.

ENDDO.

Former Member
0 Kudos

Hi,

The output device is not supporting some of the characters. The best way would be to change the output device and test or get in touch with basis regarding the same.

Regards,

KK