‎2008 Dec 12 8:02 AM
Hi All,
I have to read information from a txt file, which contains Greek language/characters.
Using gui_upload it is uploading and displaying some other character.
How to read from the txt file which should return the Greek character.
Advance thanks,
Balamurugan.R
‎2008 Dec 12 8:39 AM
Hello Bala,
I agree with the solution Prashant provided, you must use the addition CODEPAGE in GUI_UPLOAD func. module.
For Greek characters the SAP Codepage is 1704. You should try having a look @ SAP Note 73606.
Hope this helps.
BR,
Suhas
‎2008 Dec 12 8:18 AM
Pass the codepage value wrt the language which you are uploading :
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
CODEPAGE = V_CODEPAGE
..........
..........While saving the file in Notepad.. when you click on SAVE AS .. in ENCODING pass Unicode
Best regards,
Prashant
‎2008 Dec 12 8:28 AM
Hi,
While ur saving the file save it is NON_unicode.
Then it will work for you.
Like this i have solved my pblm.
Thanks,
‎2008 Dec 12 8:35 AM
Hi...
I dont think so its an encoding problem....may be the problem is with ur tabs in the text file..just check the tabs again and then try and upload file..see what is being uploaded in your internal table though file while debugging
thanks
‎2008 Dec 12 8:39 AM
Hello Bala,
I agree with the solution Prashant provided, you must use the addition CODEPAGE in GUI_UPLOAD func. module.
For Greek characters the SAP Codepage is 1704. You should try having a look @ SAP Note 73606.
Hope this helps.
BR,
Suhas
‎2008 Dec 12 8:52 AM
HI Suhas,
If bala is using unicode system it doesn#t matter by specifying code page as i suppose.
Because unicode system has to accept all the codepages.
so beeter to save the file in non unicoefformat.
Thanks,
‎2008 Dec 12 10:03 AM
Hi Suhas,
Thank you. It is working.
I am generating xls file and attach it for mail using FM
SO_NEW_DOCUMENT_ATT_SEND_API1 .
The Polish language symbol not appearing in XLS file.
what to do.
Thanks
Balamurugan.R
‎2008 Dec 12 11:26 AM