<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917679#M381520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Call Transaction mothod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow you are passing data from Ztable records one by one to BDC.&lt;/P&gt;&lt;P&gt;Check whethr the transaction is succesful, if it is successul then using update the record in Ztable using update command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction ......&lt;/P&gt;&lt;P&gt;If sy-subrc = 0.&lt;/P&gt;&lt;P&gt;Update Ztable set qty = g_qty&lt;/P&gt;&lt;P&gt;                     where &amp;lt;condition&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Feb 2007 06:54:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-22T06:54:48Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917676#M381517</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;I am in a fix and need your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had created a screen through which user may enter data, that is stored in a       Z-Table which I created .&lt;/P&gt;&lt;P&gt;In another screen on clicking on SAVE button, the same data is uploaded through BDC to a transaction (MB11).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I had stored &amp;lt;u&amp;gt;Qty = 10&amp;lt;/u&amp;gt; while storing the data in Z-Table, but while running the BDC, I choose to change (OR I have to change) Qty from 10 to 2 (i.e. now &amp;lt;u&amp;gt;Qty = 2&amp;lt;/u&amp;gt;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, the problem is that, I want to store (or replace) the changed value in my &lt;/P&gt;&lt;P&gt;Z-Table i.e. 2 in place of 10 in the correct position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought of finding some link between the Z-Table and MSEG, MSEG also has one of the primary field of Z-Table, but since it's not in the transaction MB11, it is not filled when running the BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest asap.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:23:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917676#M381517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917677#M381518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store the value in a variable, and after CALL TRANSACTION statement in your BDC program write an UPDATE statement to reflect the changes in the Z-TABLE.&lt;/P&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep Shenoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917677#M381518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917678#M381519</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;one suggestion may be,you go to the bdcrecx1 include of your bdc program create a form for updating the z-table using UPDATE command. come to the main program and call the form after call transaction or create session perform.&lt;/P&gt;&lt;P&gt;just try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pankaj singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917678#M381519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917679#M381520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Call Transaction mothod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow you are passing data from Ztable records one by one to BDC.&lt;/P&gt;&lt;P&gt;Check whethr the transaction is succesful, if it is successul then using update the record in Ztable using update command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction ......&lt;/P&gt;&lt;P&gt;If sy-subrc = 0.&lt;/P&gt;&lt;P&gt;Update Ztable set qty = g_qty&lt;/P&gt;&lt;P&gt;                     where &amp;lt;condition&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1917679#M381520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:54:48Z</dc:date>
    </item>
  </channel>
</rss>

