<?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 bdcheaderand item in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651934#M289588</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;i have one doubt on bdc's. if we want to transfer item data and header data ato a table .how can we transfer.can we use any special type of programming ? explaine details.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Nov 2006 14:23:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-22T14:23:52Z</dc:date>
    <item>
      <title>bdcheaderand item</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651934#M289588</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;i have one doubt on bdc's. if we want to transfer item data and header data ato a table .how can we transfer.can we use any special type of programming ? explaine details.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 14:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651934#M289588</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-22T14:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: bdcheaderand item</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651935#M289589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no need...loop at table...&lt;/P&gt;&lt;P&gt;at new &amp;lt;key field&amp;gt;&lt;/P&gt;&lt;P&gt;  populate header fields.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt; populate item details.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, for every new header, it fills only header data &amp;amp; then fills all the itm data &amp;amp; so..on&lt;/P&gt;&lt;P&gt;before that sort the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 14:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651935#M289589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-22T14:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: bdcheaderand item</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651936#M289590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;handling of header and item data in bdc is a common requirement&lt;/P&gt;&lt;P&gt;if we have a 2 different flat files one for header and one for item&lt;/P&gt;&lt;P&gt;there should be a common field in both the files on order to match the records&lt;/P&gt;&lt;P&gt;for eg in header file the record of 100  is single record ,but in item file it may contain several item records of 100 records.&lt;/P&gt;&lt;P&gt;while programing in loop we have to see that for each header  record we have to loop for items belonging to same header record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 14:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651936#M289590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-22T14:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: bdcheaderand item</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651937#M289591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;         loop at header.&lt;/P&gt;&lt;P&gt;             populate BDC header data&lt;/P&gt;&lt;P&gt;          loop at item where matnr = header-item.&lt;/P&gt;&lt;P&gt;               populate BDC item data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          endloop. &lt;/P&gt;&lt;P&gt;          endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 15:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcheaderand-item/m-p/1651937#M289591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-22T15:05:26Z</dc:date>
    </item>
  </channel>
</rss>

