<?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: #  in application server file. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-application-server-file/m-p/4211432#M1006354</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;Use this FM DX_FILE_READ for read the file from application server to ITAB of the program.&lt;/P&gt;&lt;P&gt;FILENAME = Application server file pat name&lt;/P&gt;&lt;P&gt;SERVER = sever name "f More than one application server.&lt;/P&gt;&lt;P&gt;Fm - PC = Y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop the itab.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF '#' IN:&lt;/P&gt;&lt;P&gt;itab WITH ' ' .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this FM to delete file from application server &lt;/P&gt;&lt;P&gt;DX_FILE_DELETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After Delete Again Create file to application server or Download to presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create file to application server ---&amp;gt; Use FM DX_FILE_WRITE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download to presentation server --&amp;gt; Use FM GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If PC = 'X' means --&amp;gt; upload the file from presentation server &lt;/P&gt;&lt;P&gt;Else Space or Others Read teh file from application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want application server name Goto SM51 t-code there u &lt;/P&gt;&lt;P&gt;can find the all application server names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; In any SAP Access click System&lt;DEL&gt;-&amp;gt;Status&lt;/DEL&gt;&amp;gt; Here u can find&lt;/P&gt;&lt;P&gt; the server name( Host Data - Seccion).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Durai.V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jul 2008 05:54:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-21T05:54:50Z</dc:date>
    <item>
      <title>#  in application server file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-application-server-file/m-p/4211431#M1006353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have uploaded a tab delimited file from application server to internal table,but '#' is coming in place of tab in internal table.&lt;/P&gt;&lt;P&gt;To remove that I have used this method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT record AT CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;INTO table or fields.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;This works but in my int table there are some currency fields,so I am getting a syntax error for this currency fields saying it should be of type c,n,d,t,x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody please tell me how to handle it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Jul 2008 16:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-application-server-file/m-p/4211431#M1006353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-19T16:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: #  in application server file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-application-server-file/m-p/4211432#M1006354</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;Use this FM DX_FILE_READ for read the file from application server to ITAB of the program.&lt;/P&gt;&lt;P&gt;FILENAME = Application server file pat name&lt;/P&gt;&lt;P&gt;SERVER = sever name "f More than one application server.&lt;/P&gt;&lt;P&gt;Fm - PC = Y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop the itab.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF '#' IN:&lt;/P&gt;&lt;P&gt;itab WITH ' ' .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this FM to delete file from application server &lt;/P&gt;&lt;P&gt;DX_FILE_DELETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After Delete Again Create file to application server or Download to presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create file to application server ---&amp;gt; Use FM DX_FILE_WRITE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download to presentation server --&amp;gt; Use FM GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If PC = 'X' means --&amp;gt; upload the file from presentation server &lt;/P&gt;&lt;P&gt;Else Space or Others Read teh file from application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want application server name Goto SM51 t-code there u &lt;/P&gt;&lt;P&gt;can find the all application server names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; In any SAP Access click System&lt;DEL&gt;-&amp;gt;Status&lt;/DEL&gt;&amp;gt; Here u can find&lt;/P&gt;&lt;P&gt; the server name( Host Data - Seccion).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Durai.V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2008 05:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-application-server-file/m-p/4211432#M1006354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-21T05:54:50Z</dc:date>
    </item>
  </channel>
</rss>

