<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317707#M1393871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Sriram,
&amp;lt;li&amp;gt;Get the front-end code page using &lt;STRONG&gt;NLS_GET_FRONTEND_CP&lt;/STRONG&gt;.
&amp;lt;li&amp;gt;Pass the code page through &lt;STRONG&gt;GUI_DOWNLOAD&lt;/STRONG&gt;.
&lt;PRE&gt;&lt;CODE&gt;
REPORT  ztest.
TYPE-POOLS:abap.
DATA:frontend_codepage TYPE  cpcodepage.
DATA:codepage          TYPE  abap_encoding.
"Get the Frontend Code page
CALL FUNCTION 'NLS_GET_FRONTEND_CP'
  EXPORTING
    langu             = sy-langu
  IMPORTING
    frontend_codepage = frontend_codepage.
"Pass the codepage through GUI_DOWNLOAD function module
codepage = frontend_codepage.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    filename = 'C:\temp\data.xls'
    filetype = 'ASC'
    codepage = codepage
  TABLES
    data_tab = it_data.&lt;/CODE&gt;&lt;/PRE&gt;
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Oct 2009 09:03:23 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2009-10-27T09:03:23Z</dc:date>
    <item>
      <title>Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317701#M1393865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to create a file on the presentation server using GUI_DOWLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing a problem with the data that contains polish characters.. like &lt;STRONG&gt;Ą&lt;/STRONG&gt; , &lt;STRONG&gt;Ł&lt;/STRONG&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is  a vendor numer in the system as &lt;STRONG&gt;FRĄCZEK&lt;/STRONG&gt;, when i was tring to download, the vendor number is downloaded as &lt;STRONG&gt;FR¥CZEK&lt;/STRONG&gt;, even i tried to download from SE16 also, still i am facing the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing the above problem with soem other polish characters..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any solution  to download the data properly.. ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guys please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advacnce.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sriram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Srirama Murthy Maddirala on Oct 27, 2009 8:10 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 07:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317701#M1393865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T07:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317702#M1393866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Need to give the exact value for polish character in CODEPAGE ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Codepage is one of the exporting parameter in FM GUI_DOWNLOAD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 07:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317702#M1393866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T07:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317703#M1393867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;in gui_download while working with diffrent languages u need to pass the code_page  either...&lt;/P&gt;&lt;P&gt;u need to pass the parameter code page = '1'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 07:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317703#M1393867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T07:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317704#M1393868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not find any codepage for polish characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with some codepage values &lt;STRONG&gt;0161&lt;/STRONG&gt; and &lt;STRONG&gt;1404&lt;/STRONG&gt;  those are for central Europe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still the problem is not solved. Is there any other codepage values for Polish Language..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 07:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317704#M1393868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T07:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317705#M1393869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can use code page  = 870 value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 08:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317705#M1393869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T08:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317706#M1393870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you try with CODEPAGE = '1401'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 08:40:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317706#M1393870</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-10-27T08:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317707#M1393871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Sriram,
&amp;lt;li&amp;gt;Get the front-end code page using &lt;STRONG&gt;NLS_GET_FRONTEND_CP&lt;/STRONG&gt;.
&amp;lt;li&amp;gt;Pass the code page through &lt;STRONG&gt;GUI_DOWNLOAD&lt;/STRONG&gt;.
&lt;PRE&gt;&lt;CODE&gt;
REPORT  ztest.
TYPE-POOLS:abap.
DATA:frontend_codepage TYPE  cpcodepage.
DATA:codepage          TYPE  abap_encoding.
"Get the Frontend Code page
CALL FUNCTION 'NLS_GET_FRONTEND_CP'
  EXPORTING
    langu             = sy-langu
  IMPORTING
    frontend_codepage = frontend_codepage.
"Pass the codepage through GUI_DOWNLOAD function module
codepage = frontend_codepage.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    filename = 'C:\temp\data.xls'
    filetype = 'ASC'
    codepage = codepage
  TABLES
    data_tab = it_data.&lt;/CODE&gt;&lt;/PRE&gt;
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 09:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317707#M1393871</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-10-27T09:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Polish Characters while downloading data using GUI_DOWLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317708#M1393872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to login system with your language&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Mar 2010 14:28:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-polish-characters-while-downloading-data-using-gui-dowload/m-p/6317708#M1393872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-12T14:28:53Z</dc:date>
    </item>
  </channel>
</rss>

