<?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: Error for special character in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468325#M1058583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    All the special characters that are taken from external source are saved in the form of '#' in SAP . However, this value is different from teh normal hash symbol. So I believe teh value you are getting in the string1 is nothing but the new line character which represents that the next character followed by this string will come in next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Sep 2008 08:37:14 GMT</pubDate>
    <dc:creator>former_member217544</dc:creator>
    <dc:date>2008-09-12T08:37:14Z</dc:date>
    <item>
      <title>Error for special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468321#M1058579</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 am getting a problem while writing data to a flat file. &lt;/P&gt;&lt;P&gt;Suppose I am writing two strings continuously&lt;/P&gt;&lt;P&gt;Str1: "SAP.#"&lt;/P&gt;&lt;P&gt;STR2 : "Germany"&lt;/P&gt;&lt;P&gt;It should write as SAP#Germany.&lt;/P&gt;&lt;P&gt;But Germany is been shifted to the next line i.s I am getting a line break.&lt;/P&gt;&lt;P&gt;ie. "SAP#"&lt;/P&gt;&lt;P&gt;"Germany"&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;Sumeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 07:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468321#M1058579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T07:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error for special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468322#M1058580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using GUI_DOWNLOAD then try using TRUNC_TRAILING_BLANKS_EOL = SPACE parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 08:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468322#M1058580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error for special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468323#M1058581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;Please see the test code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_subha_test3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF x_data,&lt;/P&gt;&lt;P&gt;         f1 TYPE char70,&lt;/P&gt;&lt;P&gt;        END OF x_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_data TYPE STANDARD TABLE OF x_data,&lt;/P&gt;&lt;P&gt;      wa_data TYPE x_data,&lt;/P&gt;&lt;P&gt;      l_file_path TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'SAP.#' 'Germany' INTO wa_data-f1.&lt;/P&gt;&lt;P&gt;append wa_data to i_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_file_path = 'C:\Documents and Settings\Administrator\Desktop\abc.txt'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Download souce code into into a file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename                = l_file_path&lt;/P&gt;&lt;P&gt;      filetype                = 'ASC'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data_tab                = i_data[]&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      file_write_error        = 1&lt;/P&gt;&lt;P&gt;      no_batch                = 2&lt;/P&gt;&lt;P&gt;      gui_refuse_filetransfer = 3&lt;/P&gt;&lt;P&gt;      invalid_type            = 4&lt;/P&gt;&lt;P&gt;      no_authority            = 5&lt;/P&gt;&lt;P&gt;      unknown_error           = 6&lt;/P&gt;&lt;P&gt;      header_not_allowed      = 7&lt;/P&gt;&lt;P&gt;      separator_not_allowed   = 8&lt;/P&gt;&lt;P&gt;      filesize_not_allowed    = 9&lt;/P&gt;&lt;P&gt;      header_too_long         = 10&lt;/P&gt;&lt;P&gt;      dp_error_create         = 11&lt;/P&gt;&lt;P&gt;      dp_error_send           = 12&lt;/P&gt;&lt;P&gt;      dp_error_write          = 13&lt;/P&gt;&lt;P&gt;      unknown_dp_error        = 14&lt;/P&gt;&lt;P&gt;      access_denied           = 15&lt;/P&gt;&lt;P&gt;      dp_out_of_memory        = 16&lt;/P&gt;&lt;P&gt;      disk_full               = 17&lt;/P&gt;&lt;P&gt;      dp_timeout              = 18&lt;/P&gt;&lt;P&gt;      file_not_found          = 19&lt;/P&gt;&lt;P&gt;      dataprovider_exception  = 20&lt;/P&gt;&lt;P&gt;      control_flush_error     = 21&lt;/P&gt;&lt;P&gt;      OTHERS                  = 22.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 08:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468323#M1058581</guid>
      <dc:creator>Subhankar</dc:creator>
      <dc:date>2008-09-12T08:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error for special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468324#M1058582</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;The strings are coming from READ_TEXT function module and then written to the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sumeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 08:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468324#M1058582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T08:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error for special character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468325#M1058583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    All the special characters that are taken from external source are saved in the form of '#' in SAP . However, this value is different from teh normal hash symbol. So I believe teh value you are getting in the string1 is nothing but the new line character which represents that the next character followed by this string will come in next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 08:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-for-special-character/m-p/4468325#M1058583</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2008-09-12T08:37:14Z</dc:date>
    </item>
  </channel>
</rss>

