<?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 SAP-BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361788#M179554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1........Table is used for BDC?&lt;/P&gt;&lt;P&gt;2.what is the effect of on-change request command in Flowlogic?&lt;/P&gt;&lt;P&gt;3.what will happen if the flow logic has been changed while executing transaction code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz clarify these questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Jun 2006 04:45:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-02T04:45:05Z</dc:date>
    <item>
      <title>SAP-BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361788#M179554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1........Table is used for BDC?&lt;/P&gt;&lt;P&gt;2.what is the effect of on-change request command in Flowlogic?&lt;/P&gt;&lt;P&gt;3.what will happen if the flow logic has been changed while executing transaction code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz clarify these questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jun 2006 04:45:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361788#M179554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-02T04:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAP-BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361789#M179555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.BDC table is used a a internal table which  holds the data for one transaction.The contents are then passed from the BDC asa queue file.You should declare the BDC table as an internal table with the ABAP/4 dictionary&lt;/P&gt;&lt;P&gt;of structure BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. on chain-request:  executes the module only when the user  enters a new value in that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jun 2006 06:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361789#M179555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-02T06:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAP-BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361790#M179556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi internal table is used to hold data, which is to be passed on to the transaction in BDC. You can loop thru internal table and use  new field,screen field in between, this will update the data in the DB table which is called by the transaction when you process the session in SM35&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On-change request is conditional clause you use it especially when looping through internal table and you want to take some action when the value changes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jun 2006 09:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361790#M179556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-02T09:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAP-BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361791#M179557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Srinivasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare the following Internal Tables with refrence to the following ABAP Dictionary Tables &amp;lt;b&amp;gt;BDCDATA&amp;lt;/b&amp;gt; (to hold the transaction data) and &amp;lt;b&amp;gt;BDCMSGCOLL&amp;lt;/b&amp;gt; (to hold the error messages)   &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data : t_bdc_data     TYPE bdcdata OCCURS 0 WITH HEADER LINE,
t_messages     TYPE bdcmsgcoll OCCURS 0 WITH HEADER LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then call the transaction passing these internal tables,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION  ia06  "transactio
               USING    t_bdc_data
               MODE          " Mode (A/E/N)
               UPDATE        " A/S
               MESSAGES INTO t_messages.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On-change is triggered whenever a new entry for the field refrenced is detected in a Loop. You can take the corresponding action on detecting the change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT t_mara INTO wa_mara.
          "some processing
  ON  CHANGE OF wa_mara-matnr.  "At every new matnr
           "some processing
  ENDON.
ENDLOOP. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;It depends on the Batch Input Method and the Transaction you are calling.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Call transaction&amp;lt;/b&amp;gt; :  Error situations should be handled explicitly.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Session Method&amp;lt;/b&amp;gt;   :  An Error log is created at the end of Batch input session. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Arun Sambargi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Arun Sambargi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jun 2006 14:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-bdc/m-p/1361791#M179557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-02T14:36:07Z</dc:date>
    </item>
  </channel>
</rss>

