<?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: How control the filename encoding when using open dataset? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546324#M1936328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a operational system issue, you can't correct this using abap. But, ask your system administrator to check about character encoding on linux. It is a common issue in copies between linux and windows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a tool that converts the file encoding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remove the “(invalid encoding)” you use the “convmv” tool. It is a tool that will convert the character encoding used in the file name. You can try the conversion of file names from different character set to UTF-8 using the following commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;convmv -r -f windows-1252 -t UTF-8 .&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;&lt;/CODE&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;convmv -r -f ISO-8859-1 -t UTF-8 .&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;convmv -r -f cp-850 -t UTF-8 .&lt;/CODE&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Try to create a job in linux server that run this commands in determinate times, or ask the system administrator, about another solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this can help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Apr 2016 11:25:08 GMT</pubDate>
    <dc:creator>balbino_soaresferreirafil</dc:creator>
    <dc:date>2016-04-05T11:25:08Z</dc:date>
    <item>
      <title>How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546310#M1936314</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;We are using opendatset to create file on Linux server. The SAP system is Unicode and filename created is encoded in unicode as well. However, when we transfer that file to a Windows machine, the file appears illegible with special characters. The original file name is in Hebrew. &lt;/P&gt;&lt;P&gt;Any ideas as to how to control the encoding of the file name itself using "open dataset &amp;lt;filename&amp;gt;&lt;SPAN style="font-size: 10pt;"&gt;"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Eric Labiner&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Apr 2016 09:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546310#M1936314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-03T09:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546311#M1936315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to create file using 'ENCODING' statement addition in OPEN DATASET (&lt;A href="http://help.sap.com/abapdocu_702/en/abapopen_dataset_encoding.htm" title="http://help.sap.com/abapdocu_702/en/abapopen_dataset_encoding.htm"&gt;ABAP Keyword Documentation) .&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else try to download file to windows system as binary file with appropriate file extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check in your system if additional languages are supported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Apr 2016 10:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546311#M1936315</guid>
      <dc:creator>kjyothiraditya</dc:creator>
      <dc:date>2016-04-03T10:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546312#M1936316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have tried all of the combinations for the ENCODING and I can see that it affects the encoding of the contents of the file and not the encoding of the file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Apr 2016 11:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546312#M1936316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-03T11:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546313#M1936317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ERic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. Try to open the file using MS office applcn or some other applcn. Also check the font settings in your system while opening the file. &lt;A href="https://support.office.com/en-ie/article/Choose-text-encoding-when-you-open-and-save-files-00c46cde-83a4-437d-be83-aca280ff9174" title="https://support.office.com/en-ie/article/Choose-text-encoding-when-you-open-and-save-files-00c46cde-83a4-437d-be83-aca280ff9174"&gt;Choose text encoding when you open and save files - Word&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Apr 2016 12:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546313#M1936317</guid>
      <dc:creator>kjyothiraditya</dc:creator>
      <dc:date>2016-04-03T12:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546314#M1936318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Hi Aditya,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;All the apps I use to open the files show the contents fine. Our problem is how to control the encoding of the file name itself. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Apr 2016 12:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546314#M1936318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-03T12:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546315#M1936319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I guess you made sure that the file name is correct at the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you transfer the file at the frontend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On that frontend, did you try to create a file from scratch with name in Hebrew?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Apr 2016 16:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546315#M1936319</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-04-03T16:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546316#M1936320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 12.8px; text-align: justify; font-family: Arial, sans-serif; color: blue; background: white;"&gt;OPEN&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 12.8px; text-align: justify; font-family: Arial, sans-serif;"&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;DATA SET&lt;/SPAN&gt; G_FILE &lt;SPAN style="color: blue; background-position: initial;"&gt;FOR&lt;/SPAN&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;INPUT&lt;/SPAN&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;IN&lt;/SPAN&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;TEXT&lt;/SPAN&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;MODE&lt;/SPAN&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;ENCODING&lt;/SPAN&gt; &lt;SPAN style="color: blue; background-position: initial;"&gt;DEFAULT IGNORING&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONVERSION ERRORS.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this may help full.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;E.Ananthachari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 05:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546316#M1936320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-04T05:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546317#M1936321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file is transferred using FTP. On the application server we see the file fine, in Hebrew. If I create the file on the frontend with a Hebrew filename I see it fine, but that's because windows encodes the filenames with codepage 1255 and not Unicode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 07:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546317#M1936321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-04T07:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546318#M1936322</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;Thanks for the idea. I tested your idea and with the same results. It appears that the encoding parameters are only relevant for the file's contents and not the file name itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 07:17:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546318#M1936322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-04T07:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546319#M1936323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;I never heard about an option in ABAP to control the encoding of a file name when creating a file. I assume it is not possible to change the standard behaviour - UTF-8 for Unicode systems and Non-Unicode (code page depends on the system code page) for Non-Unicode systems.&lt;/P&gt;&lt;P&gt;I could imagine that you can do a conversion when transferring the file via ftp - but unfortunately I do not have details. The other option would be to change the encoding on OS side ...&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Nils Buerckel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 11:20:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546319#M1936323</guid>
      <dc:creator>nils_buerckel</dc:creator>
      <dc:date>2016-04-04T11:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546320#M1936324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you try to open the file in AL11, what happens? Does it open the file correctly and display the contents? If yes, then you should to check how AL11 is able to open the file using OPEN DATASET and use the same logic in your program. If AL11 isn't able to read the file, then I guess you are out of luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Juwin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 18:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546320#M1936324</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2016-04-04T18:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546321#M1936325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juwin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In AL11, the file name and contents are displayed fine. This is expected - as Linux is able to handle well unicode file names and the SAP system is unicode as well. I am also able to see the file name fine when looking at it on the operating system level.&lt;/P&gt;&lt;P&gt;The problem is reading the file name on a windows machine. Windows expects the file name to be encoded in Win-1255 codepage and doesn't check for encoding of the file name,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 08:04:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546321#M1936325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-05T08:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546322#M1936326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, the issue is probably due to your FTP software, which doesn't "detect" the file name encoding of at least one of your 2 file systems. You should search the web, not the SAP forum. Except if you use FTP from SAP? What exactly then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Message was edited by: Sandra Rossi&#xD;
RFC 2640 (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://tools.ietf.org/html/rfc2640"&gt;https://tools.ietf.org/html/rfc2640&lt;/A&gt;&lt;SPAN&gt;) gives more details about FTP client/server softwares how they should treat encoding of file names - the recommendation is to use UTF-8, but do your FTP client/server works this way? there is the FTP command FEAT to know if UTF8 is supported, and LANG to force an encoding.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 10:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546322#M1936326</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-04-05T10:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546323#M1936327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had many problems before with encoding and special characters Turkish and greek letters). The following statement solved all of them:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;OPEN &lt;SPAN class="L0S52"&gt;DATASET &lt;/SPAN&gt;l_file &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OUTPUT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TEXT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;MODE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ENCODING &lt;/SPAN&gt;UTF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;8 &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;BYTE&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ORDER &lt;/SPAN&gt;MARK&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Try it to see if it solves your problems as well.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Regards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Peter&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 10:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546323#M1936327</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2016-04-05T10:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: How control the filename encoding when using open dataset?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546324#M1936328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a operational system issue, you can't correct this using abap. But, ask your system administrator to check about character encoding on linux. It is a common issue in copies between linux and windows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a tool that converts the file encoding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remove the “(invalid encoding)” you use the “convmv” tool. It is a tool that will convert the character encoding used in the file name. You can try the conversion of file names from different character set to UTF-8 using the following commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;convmv -r -f windows-1252 -t UTF-8 .&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;&lt;/CODE&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;convmv -r -f ISO-8859-1 -t UTF-8 .&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class="plain" style="font-family: Monaco, Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; margin: 0 !important; padding: 0 !important; color: black !important; background: none !important;"&gt;convmv -r -f cp-850 -t UTF-8 .&lt;/CODE&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Try to create a job in linux server that run this commands in determinate times, or ask the system administrator, about another solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this can help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 11:25:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-control-the-filename-encoding-when-using-open-dataset/m-p/11546324#M1936328</guid>
      <dc:creator>balbino_soaresferreirafil</dc:creator>
      <dc:date>2016-04-05T11:25:08Z</dc:date>
    </item>
  </channel>
</rss>

