cancel
Showing results for 
Search instead for 
Did you mean: 

Arabic text not supported in PDF

Former Member
0 Kudos

Hi

I developed smartform which has some arabic text and english text

this form should be sent mail PDF attached .

form is going to mail properly. but when i opened form arabic text are coming in block english text are coming properly

please help me how to handle this for supporting arabic text in pdf

Accepted Solutions (0)

Answers (8)

Answers (8)

Former Member
0 Kudos

thanks to all

problem is solved

Former Member
0 Kudos

So Sunil .. how did you manage to solve it ???

please tell us how ..

Thanks

Former Member
0 Kudos

Hi,

the PDF-Creator runs on the server, so TrueType fonts needs to be there.

You have to upload the TTF with the arabic letters / unicode area to the sapserver (SE78). Please note, that sometimes you need to buy a license for that.

It has nothing to do with Frontend printing.

Use an output device with a device type with unicode area mapping for pdf (like I2PDF for unicode area 2 or so...).

Regards,

Christian

Former Member
0 Kudos

Hello

It might also be helpful to check the pdf uncode note 999712.

The guide 'How to install TrueType Fonts for UC PDF conversion.doc' which is contained in the attachments of Note #999712 describes which fonts are suitable for which languages.

Regards.

Former Member
0 Kudos

yes i passes arabic language in control_parametrs

Former Member
0 Kudos

Please refer the link. May be some note we have to apply..

http://boardreader.com/thread/Problem_Converting_Arabic_Smartform_to_P_6s4dbX12jnr.html

Refer this link is more helpful for you.

Edited by: Dhina DMD on Jun 7, 2011 9:31 AM

Former Member
0 Kudos

Hi

Yes Arabic language is already installed in my machine.

same problem it giving

Former Member
0 Kudos

Hi,

While calling the smartform function module did u pass langu as 'AR' in Control_parameter?

Regards,

Dhina..

ravi_lanjewar
Contributor
0 Kudos

Hi,

You can check that font is installed or not on local machine. Install the font on local machine and try it.

Former Member
0 Kudos

Hi

I developed form in Arabic orginal language

also in i passed Arabic language in

control-langu = 'AR'. and my device type is ARSWIN

in print preview it coming fine also in print it also coming fine

when it converted to pdf Arabic text coming in Blocks

former_member213275
Contributor
0 Kudos

Hi,

1) Does it happen in print preview?If yes, then check for device type. It should be ARSWIN device type.

2) keep the original language as english.

39 When you create your driver program for your smartform, pass the Control_Parameter-Langu = Arabic. This will call your english smartform in the arbic language and hence it will all come in RTL style.This control parameter is present in the interface of your smartform.

This can be done as follows. In your driver program declare

data: L_CTRL_PAR TYPE SSFCTRLOP.

L_CTRL_PAR-LANGU = 'A'.

While calling your form pass this variable.

CALL FUNCTION FORMNAME

EXPORTING

CONTROL_PARAMETERS = L_CTRL_PAR

......

....

Exceptions

.....

Srikanth.