<?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 CALL TRANSACTION OR SESSION METHOD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438905#M825837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is based upon in which mode you have run your transaction.i.e. either in Synchronous or Asynchronous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If synchoronous, then it wont be transferred any records.&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;K.Tharani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2008 07:37:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-19T07:37:27Z</dc:date>
    <item>
      <title>BDC CALL TRANSACTION OR SESSION METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438902#M825834</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;While Uploading a flat file through BDC Call Transaction suddenly system crashed .How do u know that how many records have been updated and how u will do such type of suitations occured?And total 1000 records r there and u uploaded 500 records how do u know that 500 uploaded and from first onwards u will again upload  or from 500 records on words u will upload?pls explain it clearly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: nagisethi chalapathi on Feb 19, 2008 8:28 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 07:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438902#M825834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T07:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION OR SESSION METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438903#M825835</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;When you use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Synchronous' and the power goes off the records will rollback. the records will not updated means the updation has to b fully completed or fully rollback.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 'Asynchronous' if the records have been updated partially like out of 100 some records say 80 updated and power goes off then when you start next time it will start updation from 81st record .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 07:30:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438903#M825835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T07:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION OR SESSION METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438904#M825836</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;Use call transaction with the following syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'PA30' USING it_bdcdata MODE c_mode                        MESSAGES INTO it_messages.



  LOOP AT it_messages INTO wa_l_msg WHERE msgtyp EQ c_error OR msgtyp EQ c_abort.
    CLEAR v_l_text.

    MESSAGE ID wa_l_msg-msgid TYPE wa_l_msg-msgtyp NUMBER wa_l_msg-msgnr
    WITH wa_l_msg-msgv1 wa_l_msg-msgv2 wa_l_msg-msgv3 wa_l_msg-msgv4
    INTO v_l_text.

    CONCATENATE p_wa_l_record-row_id v_l_text INTO v_l_msgtxt.

    wa_l_error-message    = v_l_msgtxt. " message
    wa_l_error-type       = wa_l_msg-msgtyp.
    wa_l_error-id         = wa_l_msg-msgid .
    wa_l_error-number     = wa_l_msg-msgnr.
    wa_l_error-message_v1 = wa_l_msg-msgv1 .
    wa_l_error-message_v2 = wa_l_msg-msgv2.
    wa_l_error-message_v3 = wa_l_msg-msgv3.
    wa_l_error-message_v4 = wa_l_msg-msgv4.
    APPEND wa_l_error TO it_errormsg .
    CLEAR wa_l_msg.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 07:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438904#M825836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T07:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION OR SESSION METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438905#M825837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is based upon in which mode you have run your transaction.i.e. either in Synchronous or Asynchronous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If synchoronous, then it wont be transferred any records.&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;K.Tharani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 07:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-or-session-method/m-p/3438905#M825837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T07:37:27Z</dc:date>
    </item>
  </channel>
</rss>

