<?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 BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856899#M669747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This lalitha .&lt;/P&gt;&lt;P&gt;I want to know data is transfered using BDC in real time .&lt;/P&gt;&lt;P&gt;please mail me the steps clearly .&lt;/P&gt;&lt;P&gt;ThankU .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 17:40:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T17:40:54Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856899#M669747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This lalitha .&lt;/P&gt;&lt;P&gt;I want to know data is transfered using BDC in real time .&lt;/P&gt;&lt;P&gt;please mail me the steps clearly .&lt;/P&gt;&lt;P&gt;ThankU .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 17:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856899#M669747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T17:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856900#M669748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;What is BDC programming?-&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Transferring of large/external/legacy data into SAP system using Batch Input programming. Batch input is a automatic procedure referred to as BDC(Batch Data Communications).The central component of the transfer is a queue file which receives the data vie a batch input programs and groups associated data into &amp;#147;sessions&amp;#148;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;What are the functional modules used in sequence in BDC?-&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; These are the 3 functional modules which are used in a sequence to perform a data transfer successfully using BDC programming: BDC_OPEN_GROUP - Parameters like Name of the client, sessions and user name are specified in this functional modules. BDC_INSERT - It is used to insert the data for one transaction into a session. BDC_CLOSE_GROUP - This is used to close the batch input session. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3. What should be the approach for writing a BDC program? &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; ANS:- &lt;/P&gt;&lt;P&gt;STEP 1: CONVERTING THE LEGACY SYSTEM DATA TO A FLAT FILE to internal table CALLED "CONVERSION". &lt;/P&gt;&lt;P&gt;STEP 2: TRANSFERING THE FLAT FILE INTO SAP SYSTEM CALLED "SAP DATA TRANSFER". &lt;/P&gt;&lt;P&gt;STEP 3: DEPENDING UPON THE BDC TYPE i)call transaction(Write the program explicity) &lt;/P&gt;&lt;P&gt;         ii) create sessions (sessions are created and processed.if success data will transfer). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hope this is helpful, Do reward points.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:12:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856900#M669748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856901#M669749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babu,&lt;/P&gt;&lt;P&gt;I given the BDC program in the below, if it is not match with ur requirement.&lt;/P&gt;&lt;P&gt;Do following steps:&lt;/P&gt;&lt;P&gt;1. go to transaction SHDB and do Recording of transaction MM01&lt;/P&gt;&lt;P&gt;2. Save the recording&lt;/P&gt;&lt;P&gt;3. Create Program using recording in the same transaction of SHDB.&lt;/P&gt;&lt;P&gt;4. Read input file and modify the field mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope these steps will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the Best!&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;perform open_dataset using dataset.&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read dataset dataset into record.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0. exit. endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLMGMM' '0060'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RMMG1-AENNR'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'AUSW'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-MBRSH'&lt;/P&gt;&lt;P&gt;record-MBRSH_001.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-MTART'&lt;/P&gt;&lt;P&gt;record-MTART_002.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-AENNR'&lt;/P&gt;&lt;P&gt;record-AENNR_003.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-MATNR'&lt;/P&gt;&lt;P&gt;record-MATNR_004.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLMGMM' '0070'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'MSICHTAUSW-DYTXT(15)'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(01)'&lt;/P&gt;&lt;P&gt;record-KZSEL_01_005.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(02)'&lt;/P&gt;&lt;P&gt;record-KZSEL_02_006.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(03)'&lt;/P&gt;&lt;P&gt;record-KZSEL_03_007.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(04)'&lt;/P&gt;&lt;P&gt;record-KZSEL_04_008.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(05)'&lt;/P&gt;&lt;P&gt;record-KZSEL_05_009.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(06)'&lt;/P&gt;&lt;P&gt;record-KZSEL_06_010.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(08)'&lt;/P&gt;&lt;P&gt;record-KZSEL_08_011.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(09)'&lt;/P&gt;&lt;P&gt;record-KZSEL_09_012.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(12)'&lt;/P&gt;&lt;P&gt;record-KZSEL_12_013.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(13)'&lt;/P&gt;&lt;P&gt;record-KZSEL_13_014.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(14)'&lt;/P&gt;&lt;P&gt;record-KZSEL_14_015.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(15)'&lt;/P&gt;&lt;P&gt;record-KZSEL_15_016.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLMGMM' '0070'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'MSICHTAUSW-DYTXT(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=ENTR'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLMGMM' '0080'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RMMG1-VKORG'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=ENTR'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-WERKS'&lt;/P&gt;&lt;P&gt;record-WERKS_017.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-LGORT'&lt;/P&gt;&lt;P&gt;record-LGORT_018.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-VKORG'&lt;/P&gt;&lt;P&gt;record-VKORG_019.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMMG1-VTWEG'&lt;/P&gt;&lt;P&gt;record-VTWEG_020.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLMGMM' '4004'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=SP02'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MAKT-MAKTX'&lt;/P&gt;&lt;P&gt;record-MAKTX_021.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MARA-MEINS'&lt;/P&gt;&lt;P&gt;record-MEINS_022.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MARA-MATKL'&lt;/P&gt;&lt;P&gt;record-MATKL_023.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MARA-MTPOS_MARA'&lt;/P&gt;&lt;P&gt;record-MTPOS_MARA_024.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'MARA-GEWEI'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MARA-BRGEW'&lt;/P&gt;&lt;P&gt;record-BRGEW_025.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MARA-GEWEI'&lt;/P&gt;&lt;P&gt;record-GEWEI_026.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MARA-NTGEW'&lt;/P&gt;&lt;P&gt;record-NTGEW_027.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLMGMM' '4004'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=SP03'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'MAKT-MAKTX'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'MAKT-MAKTX'&lt;/P&gt;&lt;P&gt;record-MAKTX_028.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLCLCA' '0602'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RMCLF-KLART'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'ENTE'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMCLF-KLART'&lt;/P&gt;&lt;P&gt;record-KLART_029.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLCLFM' '0500'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RMCLF-STATU(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=NEUZ'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMCLF-CLASS(01)'&lt;/P&gt;&lt;P&gt;record-CLASS_01_030.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMCLF-STATU(01)'&lt;/P&gt;&lt;P&gt;record-STATU_01_031.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLCLFM' '0500'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RMCLF-PAGPOS'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=ENDE'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RMCLF-PAGPOS'&lt;/P&gt;&lt;P&gt;record-PAGPOS_032.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLSPO1' '0300'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=YES'.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'MM01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform close_group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward Points 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;Gokul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856901#M669749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856902#M669750</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;  try these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For BDC:&lt;/P&gt;&lt;P&gt;&lt;A href="http://myweb.dal.ca/hchinni/sap/bdc_home.htm" target="test_blank"&gt;http://myweb.dal.ca/hchinni/sap/bdc_home.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&amp;amp;" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&amp;amp;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/learning-bdc-programming.htm" target="test_blank"&gt;http://www.sap-img.com/abap/learning-bdc-programming.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/bdc/bdchome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/bdc/bdchome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.h" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.h&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tm&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html" target="test_blank"&gt;http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/question-about-bdc-program.htm" target="test_blank"&gt;http://www.sap-img.com/abap/question-about-bdc-program.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/" target="test_blank"&gt;http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/bdc_main_page.htm" target="test_blank"&gt;http://www.planetsap.com/bdc_main_page.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2491514"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/FAQs/TECHNICAL/SAP_ABAP_DATADICTIONARY_FAQ.html" target="test_blank"&gt;http://www.sapbrain.com/FAQs/TECHNICAL/SAP_ABAP_DATADICTIONARY_FAQ.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/InterviewQ/interviewQ.htm" target="test_blank"&gt;http://www.saptechnical.com/InterviewQ/interviewQ.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/35/2cd77bd7705394e10000009b387c12/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/35/2cd77bd7705394e10000009b387c12/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856902#M669750</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2007-10-05T06:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856903#M669751</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;BDC stand for BATCH DATA COMMUNICATION&lt;/P&gt;&lt;P&gt;Through this concept we transfer the data into SAP R/3 System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Legacy System -&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;&amp;gt; R/3 System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Batch input is used to transfer large amounts of data into the &lt;/P&gt;&lt;P&gt;SAP system. In this topic, we will learn the basics of batch input.&lt;/P&gt;&lt;P&gt;There are 2 types of transfers Conversions and interfaces.&lt;/P&gt;&lt;P&gt;Conversions: This type of transfer refers to a one-time transfer from a legacy system to the SAP system. In this case, the &amp;#147;legacy&amp;#148; system is the old system that is being replaced by the SAP system.&lt;/P&gt;&lt;P&gt;Interfaces: This type of transfer refers to an ongoing transfer from a complementary system to the SAP system. In this case, the &amp;#147;complementary&amp;#148; system is a system that will run along side the SAP system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Use&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is used for uploading the master data and different type of application data from legacy system to SAP R/3 system like as:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Vendor using transaction (&amp;#147;FK01&amp;#148;),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change Vendor using transaction (&amp;#147;FK02&amp;#148;) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reading data from application server or presentation server &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presentation -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; WS_UPLOAD &lt;/P&gt;&lt;P&gt;server 1&lt;/P&gt;&lt;P&gt;-- ABAP/4 PROGRAM&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;Application -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt; Read Dataset&lt;/P&gt;&lt;P&gt;server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Dialog Program&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A dialog program conducts a dialog with the user. As a result of user input the program executes which in turn displays an output or changes the database in a consistent way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A transaction code can be connected to dialog program which calls the corresponding program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedural steps in data migration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generate SAP structure &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Develop trasfer program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create sequential file &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creat batch input Program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process btach input data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Analyse results&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The flat file will be created any time &lt;/P&gt;&lt;P&gt;before executing the BDC program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the will be trasferd based on the DAILOG PROGRAMING EXPLAINED above &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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 07:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2856903#M669751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T07:21:36Z</dc:date>
    </item>
  </channel>
</rss>

