<?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: two different internal table data move to out put internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662450#M293445</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare the third internal table with include structures of other two internal table. then move the data. I hope u understood this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Chandra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Oct 2006 11:05:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-26T11:05:01Z</dc:date>
    <item>
      <title>two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662446#M293441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to move l_t_vbrk and l_vbak table to l_t_output_header_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table 1 ; l_t_vbrk (billing document header data)&lt;/P&gt;&lt;P&gt;table 2 ; l_t_vbak (sales document header data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no fields is maching  both table ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with out maching a fields i want to move to third table....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 10:59:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662446#M293441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T10:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662447#M293442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have no matching field than you can use the below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at l_t_vbrk.&lt;/P&gt;&lt;P&gt;  read table l_vbak index sy-tabix.&lt;/P&gt;&lt;P&gt;  move-corresponding l_t_vbrk to l_t_output_header_data.&lt;/P&gt;&lt;P&gt;  move-corresponding l_vbak to l_t_output_header_data.&lt;/P&gt;&lt;P&gt;  append l_t_output_header_data.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please make sure that l_t_vbrk has more lines as compared to l_vbak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 11:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662447#M293442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T11:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662448#M293443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it that you want to append the two tables to a third one ? &lt;/P&gt;&lt;P&gt;then append them one by one.. whats the problem in it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and please explain this strange scenario in detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sandeep Josyula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Mark helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 11:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662448#M293443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T11:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662449#M293444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i know your requirement.why u want to combine both the tables that does not have even a field in common? &lt;/P&gt;&lt;P&gt;it is not logically correct,even though u cna achieve it technically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharadha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 11:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662449#M293444</guid>
      <dc:creator>Sharadha1</dc:creator>
      <dc:date>2006-10-26T11:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662450#M293445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare the third internal table with include structures of other two internal table. then move the data. I hope u understood this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Chandra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 11:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662450#M293445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T11:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662451#M293446</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;Ur problem is not clear. Why do u want to combine itabs of sales document header &amp;amp; billing document header. Obviously there'll be more entries in VBRK than VBAK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Logically u need to have a field as a reference to VBAK in VBRK.&lt;/P&gt;&lt;P&gt;I m not clear about what u want to achieve without this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 10:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662451#M293446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-27T10:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662452#M293447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi santosh ..&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to know the sales flow before u start any coding ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just try to understand this flow..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from Delivery -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; &amp;gt; sales here u go &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBRK-VBELN = VBRP-VBELN.   "BILLING&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;VBRP-VGBEL = LIPS-VBELN.   "DELIVERY&lt;/P&gt;&lt;P&gt;VBRP-VGPOS = LIPS-POSNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIPS-VGBEL = VBAP-VBELN.   "SALES ITEM &lt;/P&gt;&lt;P&gt;LIPS-VGPOS = VBAP-POSNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBAP-VBELN = VBAK-VBELN .. "SALES HEADER &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this is the flow u need to understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a Billing Number and start navigating the flow ..&lt;/P&gt;&lt;P&gt;or get the functional flow first of all ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once u have the data joining them is not a prob ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but for u u need to understand the schema flow ..&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;VIjay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 10:31:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662452#M293447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-27T10:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: two different internal table data move to out put internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662453#M293448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the tables do not match directly because they are linked not by header but item data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First find the invoive items from VBRP. For each VBRP item there is exactly naximum one VBAK order. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't remember the fieldname now but you can find out easily taking an order and an invoice from the document flow and compare the contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 11:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-different-internal-table-data-move-to-out-put-internal-table/m-p/1662453#M293448</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-10-27T11:35:04Z</dc:date>
    </item>
  </channel>
</rss>

