<?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 bdc in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526900#M572532</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi for all viewers and thank and rewards also in advance.&lt;/P&gt;&lt;P&gt;Q1.in bdc-table control if one field is common then it simple but if no any field i common then how can solve this issues..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard : Deep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Jul 2007 09:37:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-14T09:37:39Z</dc:date>
    <item>
      <title>bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526900#M572532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi for all viewers and thank and rewards also in advance.&lt;/P&gt;&lt;P&gt;Q1.in bdc-table control if one field is common then it simple but if no any field i common then how can solve this issues..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard : Deep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jul 2007 09:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526900#M572532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-14T09:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526901#M572533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Table control is used to display multiple records on the screen with a table like display..&lt;/P&gt;&lt;P&gt;Generally we use this table control for most of the transactions Items display which are aginst for a single header record disply&lt;/P&gt;&lt;P&gt;so there will be always a link between the table control screen and the previous screen based on which (based on some common field) the data flows into it.&lt;/P&gt;&lt;P&gt;See any transaction there will a single Header record and Multiple Item records( like PR,PO,SO,Delivery,Invoice etc)&lt;/P&gt;&lt;P&gt;So there will be always some common field between the header and item(tabe control) data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jul 2007 13:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526901#M572533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-14T13:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526902#M572534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer&lt;/P&gt;&lt;P&gt;Table control in BDC&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/abap/handling-table-control-in-bdc.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/abap/handling-table-control-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jul 2007 13:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526902#M572534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-14T13:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526903#M572535</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;U may create another ITAB for the uncommon fields and try the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at TABA into LW_TABA.&lt;/P&gt;&lt;P&gt;read table TABB with key LW_TABA -field1 = field1&lt;/P&gt;&lt;P&gt;LW_TABA -field2 = field2.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0. "If not found then move &lt;/P&gt;&lt;P&gt;move TABA-field3 to ITABC-field3.&lt;/P&gt;&lt;P&gt;append ITABC.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;Endlo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2007 14:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2526903#M572535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-15T14:11:05Z</dc:date>
    </item>
  </channel>
</rss>

