2008 Feb 18 4:48 PM
Hi all,
Can anyone please tell me as to why we use the Function Module 'CONVERT_OTF'.
I use the function Module 'CONVERT_OTF' as follows:
CALL FUNCTION 'CONVERT_OTF'
EXPORTING
FORMAT = 'PDF'
MAX_LINEWIDTH = 132
IMPORTING
BIN_FILESIZE = V_LEN_IN
TABLES
OTF = I_OTF
LINES = I_TLINE
EXCEPTIONS
ERR_MAX_LINEWIDTH = 1
ERR_FORMAT = 2
ERR_CONV_NOT_POSSIBLE = 3
OTHERS = 4.
But I get the contents of the table I_OTF in some Language like Japanese.
Can anyuone please tell me how to resolve the above issue please.
Kindly reply immediately as this is bit urgent.
Regards,
Vijay
2008 Feb 18 4:55 PM
Try this way
set local language <your language>. " Japanese or Chinese
then
call function 'CONVERT_OTF'
......
......
......
a®
2008 Feb 18 4:55 PM
Try this way
set local language <your language>. " Japanese or Chinese
then
call function 'CONVERT_OTF'
......
......
......
a®
2010 Jan 21 6:52 PM
Curious if you ever found a solution to this issue. We are having the same problem.
Thanks!