<?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 with session method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754969#M903354</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnak u for ur reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                         but the data present here for three t.codes in one internal table ,when i loop the internal table ,can i keep all the bdc_insert  FM, in one loop, will it upload in parallel for this at a time , how should i use the loop of internal table with all records of three t.codes and bdc_insert Fm in the loop. Plz help me out with  a sample code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Apr 2008 06:21:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-29T06:21:24Z</dc:date>
    <item>
      <title>bdc with session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754966#M903351</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;&lt;/P&gt;&lt;P&gt;        i need to upload these transactions(MB1A, MB31,MB1A )one after the other.i have  the data in flat file(excel). I need to use BDC for this. I am prefering SESSION method for this.Can any one help me to acieve this. shall i record the transactions one after the othet and keep BDC_INSERT after the perform statements. will achieve this. Help me with a sample code for this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 05:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754966#M903351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T05:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: bdc with session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754967#M903352</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;we can use multiple transactions in session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose we have created recordings for the transactions 'MM01' 'XD01' and 'VA01'.&lt;/P&gt;&lt;P&gt;then we have to follow the steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bdc_open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this we have to fill the bdcdata structure for one transaction.here 'MM01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bdc_insert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this we have to fill the bdcdata structure for one transaction.here 'XD01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bdc_insert .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this we have to fill the bdcdata structure for one transaction.here 'VA01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bdc_insert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bdc_close_group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 05:59:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754967#M903352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T05:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: bdc with session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754968#M903353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Upload data into internal table (itab) using the below function modules.And then by using session method populate that in the BDCDATA internal table as you generally do session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: filename LIKE rlgrap-filename .&lt;/P&gt;&lt;P&gt;PARAMETERS: kzheader AS CHECKBOX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename. &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'KD_GET_FILENAME_ON_F4' &lt;/P&gt;&lt;P&gt;       EXPORTING &lt;/P&gt;&lt;P&gt;            mask      = '*.xls' &lt;/P&gt;&lt;P&gt;            static    = 'X' &lt;/P&gt;&lt;P&gt;       CHANGING &lt;/P&gt;&lt;P&gt;            file_name = filename. &lt;/P&gt;&lt;P&gt;  &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;  CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE' &lt;/P&gt;&lt;P&gt;       EXPORTING &lt;/P&gt;&lt;P&gt;            filename                = filename &lt;/P&gt;&lt;P&gt;            i_begin_col             = begcol &lt;/P&gt;&lt;P&gt;            i_begin_row             = begrow &lt;/P&gt;&lt;P&gt;            i_end_col               = endcol &lt;/P&gt;&lt;P&gt;            i_end_row               = endrow &lt;/P&gt;&lt;P&gt;       TABLES &lt;/P&gt;&lt;P&gt;            intern                  = itab&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;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0. &lt;/P&gt;&lt;P&gt;    WRITE:/ 'Upload Error ', SY-SUBRC. &lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if useful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;khan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ahmed Khan on Apr 29, 2008 8:01 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 06:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754968#M903353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T06:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: bdc with session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754969#M903354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnak u for ur reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                         but the data present here for three t.codes in one internal table ,when i loop the internal table ,can i keep all the bdc_insert  FM, in one loop, will it upload in parallel for this at a time , how should i use the loop of internal table with all records of three t.codes and bdc_insert Fm in the loop. Plz help me out with  a sample code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 06:21:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754969#M903354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T06:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: bdc with session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754970#M903355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             one more thing i face a problem in uploading is when i give PO number in MB1A and go inside, i have items to be entered. here i can enter two items at a time, but i have eight items to be entered, how can i achieve this, plz help me out with a sample code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 06:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-with-session-method/m-p/3754970#M903355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T06:54:32Z</dc:date>
    </item>
  </channel>
</rss>

