<?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: loading csv file from application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844635#M924345</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I have a csv file at application server. Say &lt;STRONG&gt;test.csv&lt;/STRONG&gt;. it is having data in the following format :&lt;/P&gt;&lt;P&gt;asdfsdf;sadasdf;123;sadf;asfasdf;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e seperated by semicolon.&lt;/P&gt;&lt;P&gt;i need the data of this file in a internal table of my own,for example&lt;/P&gt;&lt;P&gt;itab-field1=asdfsdf itab-field2=sadasdf and so on....&lt;/P&gt;&lt;P&gt;Then i am supposed to carry out some operations on the same followed by writing another modified file on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;and there is no such function module like *TEXT&lt;/U&gt;CONVERT_CSV_TO_SAP* ._&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 May 2008 10:14:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-09T10:14:20Z</dc:date>
    <item>
      <title>loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844629#M924339</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;I need to download a &lt;STRONG&gt;csv&lt;/STRONG&gt; file from application server and.So anyone please provide me a reference source code for the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 07:46:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844629#M924339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T07:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844630#M924340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any suggestions guys??&lt;/P&gt;&lt;P&gt;its very urgent..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 09:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844630#M924340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T09:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844631#M924341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can take help from the below sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_file LIKE rlgrap-filename.&lt;/P&gt;&lt;P&gt;wa_file = p_file.&lt;/P&gt;&lt;P&gt;OPEN DATASET wa_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 8.&lt;/P&gt;&lt;P&gt;MESSAGE E714&lt;/P&gt;&lt;P&gt;WITH text-m01 p_file text-m02.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CLOSE DATASET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award point if useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 09:54:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844631#M924341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T09:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844632#M924342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply..But  could you please provide me code to upload csv file...i guess you have given the code for text file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 09:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844632#M924342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T09:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844633#M924343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You want to donwload file from Application server or upload the file on application server.&lt;/P&gt;&lt;P&gt;As in your question you have asked to download file from application server. &lt;/P&gt;&lt;P&gt;If you want to dowload file from app server then there are two ways one is a text and other is a binary.&lt;/P&gt;&lt;P&gt;I believe you must be looking for a readable file in presentation server which seems to be in text format..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will download in text format in your internal table. And you can use it way you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844633#M924343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T10:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844634#M924344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anuj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the file into an itab like described above. Next you can run function module &lt;STRONG&gt;TEXT_CONVERT_CSV_TO_SAP&lt;/STRONG&gt; to convert the .csv data into your SAP data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:07:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844634#M924344</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-05-09T10:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: loading csv file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844635#M924345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I have a csv file at application server. Say &lt;STRONG&gt;test.csv&lt;/STRONG&gt;. it is having data in the following format :&lt;/P&gt;&lt;P&gt;asdfsdf;sadasdf;123;sadf;asfasdf;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e seperated by semicolon.&lt;/P&gt;&lt;P&gt;i need the data of this file in a internal table of my own,for example&lt;/P&gt;&lt;P&gt;itab-field1=asdfsdf itab-field2=sadasdf and so on....&lt;/P&gt;&lt;P&gt;Then i am supposed to carry out some operations on the same followed by writing another modified file on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;and there is no such function module like *TEXT&lt;/U&gt;CONVERT_CSV_TO_SAP* ._&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:14:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loading-csv-file-from-application-server/m-p/3844635#M924345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T10:14:20Z</dc:date>
    </item>
  </channel>
</rss>

