<?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: extracting data from ecc5.0 &amp; uploading it in ecc6.0 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047953#M721546</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thnx for replying,&lt;/P&gt;&lt;P&gt;my file is on presentation serever how should i use fm rfc_read_table to read it into mseg of ecc 6.0.&lt;/P&gt;&lt;P&gt;and can u plz tell me as how to use it?&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        abbaper&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 03 Nov 2007 09:01:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-03T09:01:05Z</dc:date>
    <item>
      <title>extracting data from ecc5.0 &amp; uploading it in ecc6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047951#M721544</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;ive to extract data from tables (mseg , mkpf , bseg ,bkpf) of ecc5.0 to ecc6.0 for this ive written a report on ecc5.0 which copies the data of mseg in internal table.&lt;/P&gt;&lt;P&gt;Now i want to upload this data into ecc6.0 .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Can anyone plz tell me a method by using which i can upload this extracted data into ecc 6.0??its very urgent so if possible kindly reply at earliest.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;System is not connected so no transport request can be created.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;thnx &amp;amp; rgds.points would be awarded to all.&lt;/P&gt;&lt;P&gt;report zmseg .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: zmseg type table of mseg with header line.&lt;/P&gt;&lt;P&gt;data: iout type table of string .&lt;/P&gt;&lt;P&gt;data: xout type string.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select * into table zmseg from mseg.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;loop at zmseg.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  clear xout.&lt;/P&gt;&lt;P&gt;  do.&lt;/P&gt;&lt;P&gt;    assign component sy-index of structure zmseg to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    if sy-index = 1.&lt;/P&gt;&lt;P&gt;      xout = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      concatenate xout &amp;lt;fs&amp;gt; into xout separated by ','.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  append xout to iout.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;call function 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;          filename = 'C:\test.csv'&lt;/P&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;          data_tab = iout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        abbaper&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Nov 2007 08:34:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047951#M721544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-03T08:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: extracting data from ecc5.0 &amp; uploading it in ecc6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047952#M721545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;since ur downloading to excel or notepad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just write a prog for table update to mseg, or bkpf as the case maybe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tc&lt;/P&gt;&lt;P&gt;saji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Nov 2007 08:53:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047952#M721545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-03T08:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: extracting data from ecc5.0 &amp; uploading it in ecc6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047953#M721546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thnx for replying,&lt;/P&gt;&lt;P&gt;my file is on presentation serever how should i use fm rfc_read_table to read it into mseg of ecc 6.0.&lt;/P&gt;&lt;P&gt;and can u plz tell me as how to use it?&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        abbaper&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Nov 2007 09:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extracting-data-from-ecc5-0-uploading-it-in-ecc6-0/m-p/3047953#M721546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-03T09:01:05Z</dc:date>
    </item>
  </channel>
</rss>

