<?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: data transmitting help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948106#M1488248</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could segment your input, creating separate output files, and run single- or multi-thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Jun 2010 17:31:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-16T17:31:38Z</dc:date>
    <item>
      <title>data transmitting help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948105#M1488247</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 have a file which consists of around 100 thousand records of Internal Orders.&lt;/P&gt;&lt;P&gt;I need to take that as an input from a text file and upload the same into my report program and get the corresponding records from AUFK table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once I get the details I need to prepare a file and upload the same in application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have  a middle ware system, which takes the file and send it to downstream systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question here how to handle such a huge file of 100 thousand records or internal order numbers and feed to the report as an input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone clarify the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  can upload using a file and in the presentation server. Or use application server and take it from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 17:12:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948105#M1488247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-16T17:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: data transmitting help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948106#M1488248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could segment your input, creating separate output files, and run single- or multi-thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 17:31:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948106#M1488248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-16T17:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: data transmitting help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948107#M1488249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Follow these steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1- Create an internal table in your program which corresponds to the columns of ur excel file.&lt;/P&gt;&lt;P&gt;2- Use GUI_UPLOAD to transfer the data to your internal table&lt;/P&gt;&lt;P&gt;3- Fill the rest of the data from SAP table.&lt;/P&gt;&lt;P&gt;4- Now your internal table is ready&lt;/P&gt;&lt;P&gt;5- Upload the file on APP Server using this code;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Place file on server
    OPEN DATASET v_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.

    LOOP AT tbl_itab.
      TRANSFER tbl_itab-text TO v_file.
    ENDLOOP.

    CLOSE DATASET v_file.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance could be a problem for this massive data. But there is no way as you need to process all the data. Either you can make the size of file small or use this program in background if it dumps out in foreground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 18:34:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948107#M1488249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-16T18:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: data transmitting help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948108#M1488250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may dump in background as well....problem is more likely to be exceeding the max size of the user context than exceeding time limits, unless there's a lot more processing that has been described thus far.  But there's little risk of either, based on current description of work to be done...I routinely process &amp;gt;100K records without difficulty using read dataset, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 18:55:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948108#M1488250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-16T18:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: data transmitting help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948109#M1488251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FTP your file to the application server. Then use OPEN and READ DATASET to read and then process it. Finally, write your processed file back to the ap server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 19:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transmitting-help/m-p/6948109#M1488251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-16T19:05:45Z</dc:date>
    </item>
  </channel>
</rss>

