<?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: regarding data transfer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103725#M736646</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;In an SAP R/3 implementation the data from legacy system (non SAP R/3) needs to be transferred to the SAP system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Periodic data transfer between R/3 and other system (interfacing) is also required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both of the above form a part of data migration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Significance of data migration&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Data migration comes in the end of R/3 implementation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  To start with Data Migration first  configuration should be fully completed&lt;/P&gt;&lt;P&gt;  Data migration is about 20% to 40% of the total implementation expenses. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The tools for data migration are:-&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC (Batch Data Communication)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LSMW (Legacy System Migration Workbench)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use BDC or LSMW &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 02 Dec 2007 06:09:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-02T06:09:18Z</dc:date>
    <item>
      <title>regarding data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103723#M736644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guru&lt;/P&gt;&lt;P&gt;please tell me, my legacy data available in LIMS&amp;lt;labarotary information management system&amp;gt;,so i want to transfer it to the sap system.so &lt;/P&gt;&lt;P&gt;which method is suitable for me to do this.&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;subhaasis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Dec 2007 07:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103723#M736644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-01T07:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: regarding data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103724#M736645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai subhasis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download the LIMS&amp;lt;labarotary information management system&amp;gt; data into excel sheet and then upload that excel sheet data in to sap system. IF there any table exits in the sap system to store the LIMS data or not? if not create on ztable for it and using function module ALSM_EXCEL_TO_INTERNAL_TABLE upload the excel sheet into one internal table.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after getting data in internal table use below sysntax to insert data in ztable.&lt;/P&gt;&lt;P&gt;loop at &amp;lt;internal table&amp;gt;&lt;/P&gt;&lt;P&gt;move-corresponding &amp;lt;internal table&amp;gt; to ztable.&lt;/P&gt;&lt;P&gt;ztable-mandt = sy-mandt.&lt;/P&gt;&lt;P&gt;modify ztable.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the below code to get records from Excel to an internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Data declarations to download data from excel&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data : it_data type standard table of alsmex_tabline initial size 0,&lt;/P&gt;&lt;P&gt;       is_data type alsmex_tabline.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declaration of ty_tab&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;types : begin of ty_tab,&lt;/P&gt;&lt;P&gt;          bukrs type anla-bukrs,&lt;/P&gt;&lt;P&gt;          anln1 type anla-anln1,&lt;/P&gt;&lt;P&gt;          anln2 type anla-anln2,&lt;/P&gt;&lt;P&gt;          buy_back type anla-buy_back,&lt;/P&gt;&lt;P&gt;        end of ty_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Data declarations for ty_tab&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data : it_tab type standard table of ty_tab initial size 0,&lt;/P&gt;&lt;P&gt;       is_tab type ty_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  refresh : it_data, it_tab, it_anla, it_final, it_bdcdata.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Upload data from Excel to internal table format&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            filename                = p_ifname&lt;/P&gt;&lt;P&gt;            i_begin_col             = 1&lt;/P&gt;&lt;P&gt;            i_begin_row             = 1&lt;/P&gt;&lt;P&gt;            i_end_col               = 256&lt;/P&gt;&lt;P&gt;            i_end_row               = 65356&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            intern                  = it_data&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            inconsistent_parameters = 1&lt;/P&gt;&lt;P&gt;            upload_ole              = 2&lt;/P&gt;&lt;P&gt;            others                  = 3.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Append EXCEL Data into a internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  loop at it_data into is_data.&lt;/P&gt;&lt;P&gt;    at new row.&lt;/P&gt;&lt;P&gt;      clear is_tab.&lt;/P&gt;&lt;P&gt;    endat.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    if is_data-col = '001'.&lt;/P&gt;&lt;P&gt;      move is_data-value to is_tab-bukrs.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    if is_data-col = '002'.&lt;/P&gt;&lt;P&gt;      move is_data-value to is_tab-anln1.&lt;/P&gt;&lt;P&gt;      call function 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;           exporting&lt;/P&gt;&lt;P&gt;                input  = is_tab-anln1&lt;/P&gt;&lt;P&gt;           importing&lt;/P&gt;&lt;P&gt;                output = is_tab-anln1.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    if is_data-col = '003'.&lt;/P&gt;&lt;P&gt;      move is_data-value to is_tab-anln2.&lt;/P&gt;&lt;P&gt;      call function 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;           exporting&lt;/P&gt;&lt;P&gt;                input  = is_tab-anln2&lt;/P&gt;&lt;P&gt;           importing&lt;/P&gt;&lt;P&gt;                output = is_tab-anln2.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    if is_data-col = '004'.&lt;/P&gt;&lt;P&gt;      move is_data-value to is_tab-buy_back.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    at end of row.&lt;/P&gt;&lt;P&gt;      append is_tab to it_tab.&lt;/P&gt;&lt;P&gt;      clear is_tab.&lt;/P&gt;&lt;P&gt;    endat.&lt;/P&gt;&lt;P&gt;    clear : is_data.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  sort it_tab by bukrs anln1 anln2.&lt;/P&gt;&lt;P&gt;  " Now ur data is in internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Dec 2007 10:37:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103724#M736645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-01T10:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: regarding data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103725#M736646</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;In an SAP R/3 implementation the data from legacy system (non SAP R/3) needs to be transferred to the SAP system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Periodic data transfer between R/3 and other system (interfacing) is also required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both of the above form a part of data migration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Significance of data migration&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Data migration comes in the end of R/3 implementation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  To start with Data Migration first  configuration should be fully completed&lt;/P&gt;&lt;P&gt;  Data migration is about 20% to 40% of the total implementation expenses. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The tools for data migration are:-&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC (Batch Data Communication)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LSMW (Legacy System Migration Workbench)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use BDC or LSMW &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Dec 2007 06:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103725#M736646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-02T06:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: regarding data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103726#M736647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is like this ,create data transfer tool to transfer material master data&lt;/P&gt;&lt;P&gt;from one version to other version(from 4.7 to Ecc 6.0).will u pls guide me,or if u have some idea how to do &lt;/P&gt;&lt;P&gt;it pls tell me or send any helpful document related to data transfer, data migration. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2008 06:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/3103726#M736647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-21T06:33:22Z</dc:date>
    </item>
  </channel>
</rss>

