<?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: BDC_INSERT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684940#M620918</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;Collect all BDC data in an internal table (t_bdcdata) and call the BDC_INSERT function, just once.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BDC_INSERT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              tcode     = tcode&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              dynprotab = t_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A easy way to look at a BDC sample program is to use SHDB and record a transaction, then for the recording use the tool Create Program on SHDB screen - which creates the BDC program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look through the program, you can actually use the entire program as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give points for answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2007 09:20:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-14T09:20:38Z</dc:date>
    <item>
      <title>BDC_INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684938#M620916</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 bdc session method ,how to handle mutiple transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can we use in one bdc_insert functon module or multiple bdc_inserts needed .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 09:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684938#M620916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T09:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: BDC_INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684939#M620917</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;Follow this skeleton logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open_group for tran1&lt;/P&gt;&lt;P&gt;loop at it_data1.&lt;/P&gt;&lt;P&gt;*Populate bddata structures&lt;/P&gt;&lt;P&gt;bdc_insert. for tran1&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;close_group. for tran 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open_group for tran2&lt;/P&gt;&lt;P&gt;loop at it_data2.&lt;/P&gt;&lt;P&gt;*Populate bddata structures&lt;/P&gt;&lt;P&gt;bdc_insert. for tran2&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;close_group. for tran 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Omkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 09:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684939#M620917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T09:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: BDC_INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684940#M620918</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;Collect all BDC data in an internal table (t_bdcdata) and call the BDC_INSERT function, just once.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BDC_INSERT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              tcode     = tcode&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              dynprotab = t_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A easy way to look at a BDC sample program is to use SHDB and record a transaction, then for the recording use the tool Create Program on SHDB screen - which creates the BDC program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look through the program, you can actually use the entire program as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give points for answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 09:20:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-insert/m-p/2684940#M620918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T09:20:38Z</dc:date>
    </item>
  </channel>
</rss>

