<?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: Joining internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364510#M1234521</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;Use the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: &lt;/P&gt;&lt;P&gt;begin of ty_output,&lt;/P&gt;&lt;P&gt;ebeln type ebeln,&lt;/P&gt;&lt;P&gt;ebelp type ebelp,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;menge type menge,&lt;/P&gt;&lt;P&gt;belnr type belnr,&lt;/P&gt;&lt;P&gt;buzei type buzei,&lt;/P&gt;&lt;P&gt;dmbtr type dmbtr,&lt;/P&gt;&lt;P&gt;end of ty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_output type ty_output,&lt;/P&gt;&lt;P&gt;        it_output type table of ty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;sort it_ekpo by ebeln ebelp.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from it_ekpo comparing ebeln ebelp.&lt;/P&gt;&lt;P&gt;sort it_ekbe by ebeln ebelp.&lt;/P&gt;&lt;P&gt;loop at it_ekpo into wa_ekpo.&lt;/P&gt;&lt;P&gt;clear wa_output.&lt;/P&gt;&lt;P&gt;clear wa_ekbe.&lt;/P&gt;&lt;P&gt;wa_output-ebeln = wa_ekpo-ebeln.&lt;/P&gt;&lt;P&gt;wa_output-ebelp = wa_ekpo-ebelp.&lt;/P&gt;&lt;P&gt;wa_output-matnr = wa_ekpo-matnr.&lt;/P&gt;&lt;P&gt;wa_output-menge = wa_ekpo-menge.&lt;/P&gt;&lt;P&gt;loop at it_ekbe into wa_ekbe where ebeln = wa_ekpo-ebeln and ebelp = wa_ekpo-ebelp.&lt;/P&gt;&lt;P&gt;     wa_output-belnr = wa_ekbe-belnr. &lt;/P&gt;&lt;P&gt;     wa_output-buzei = wa_ekbe-buzei.&lt;/P&gt;&lt;P&gt;     wa_output-dmbtr = wa_ekbe-dmbtr.&lt;/P&gt;&lt;P&gt;     append wa_output to it_output.&lt;/P&gt;&lt;P&gt;     clear wa_ekbe.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;clear wa_ekpo.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write the logic to displaying ALV output using IT_OUTPUT internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Mar 2009 08:58:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-20T08:58:19Z</dc:date>
    <item>
      <title>Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364504#M1234515</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;&lt;/P&gt;&lt;P&gt;I have an internal table it_ekpo with the following data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EBELN                  EBELP           MATNR         MENGE &lt;/P&gt;&lt;P&gt;5000000023             0001                 test                  5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another internal table it_ekbe with the following data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EBELN        EBELP    BELNR                  BUZEI            DMBTR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5000000023  00001	4900002212	0001	      804.04&lt;/P&gt;&lt;P&gt;5000000023  00001	4900002213	0001	      804.04&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to club these 2 internal tables and get a single ALV Internal table as output to generate ALV report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to modify the it_ekpo by  transporting BELNR and DMBTR to  it_ekpo. Since there is no differentiator to separate the two records, I am getting a single record output, instead of two records  as follows :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EBELN                  EBELP           MATNR         MENGE           BELNR &lt;/P&gt;&lt;P&gt;5000000023             0001                 test                  5           4900002213&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUZEI                   BUDAT                MENGE_GI       DMBTR&lt;/P&gt;&lt;P&gt;0001	           20090317	           1.000	         804.04&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use sy-tabix also and could not succeed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your guidance in solving this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364504#M1234515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T08:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364505#M1234516</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;Instead of modifying the it_ekpo  modify the it_ekbe whcih has multiple items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;EBELN EBELP MATNR MENGE &lt;/P&gt;&lt;P&gt;5000000023 0001 test 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_EKBE.&lt;/P&gt;&lt;P&gt;READ IT_EKPO.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;MODIFY IT_EKBE with index&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify it_ekbe  with MATNR and MENGE and pass this table to ALV&lt;/P&gt;&lt;P&gt;EBELN EBELP MATNR MENGE  BELNR BUZEI DMBTR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5000000023 00001 test 5  4900002212 0001 804.04&lt;/P&gt;&lt;P&gt;5000000023 00001 test 5  4900002213 0001 804.04&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or instead of getting data into two different internal table using INNER JOIN on ekpo and ekbe get the required data in one table and pass this to alv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Avinash Kodarapu on Mar 20, 2009 2:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364505#M1234516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T08:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364506#M1234517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to declare another internal table with all the fields you want in alv output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at onetable.&lt;/P&gt;&lt;P&gt;read table &amp;lt;table2&amp;gt; with key ebeln = onetable-ebeln.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;final table -field  = assign corresponding field&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364506#M1234517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T08:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364507#M1234518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP at it_ekbe .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab- EBELN = it_ekbe-ebeln.&lt;/P&gt;&lt;P&gt;itab-EBELP = it_ekbe-ebelp&lt;/P&gt;&lt;P&gt;itab- BELNR = it_ekbe-belnr&lt;/P&gt;&lt;P&gt;itab- BUZEI= it_ekbe-buzei&lt;/P&gt;&lt;P&gt;itab- DMBTR= it_ekbe-dmbtr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read tabvle it_ekpp with key ebelnebelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-BELNR = it_ekpo-belnr&lt;/P&gt;&lt;P&gt;itab-BUZEI= it_ekpo-buzei&lt;/P&gt;&lt;P&gt;itab- DMBTR= it_ekpo-dmbtr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;reg&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:50:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364507#M1234518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T08:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364508#M1234519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at it_ekbe.
  read table it_ekpo with key ebeln = it_ekbe-ebeln
                              ebelp = it_ekbe-ebelp.
  if sy-subrc eq 0.
    it_final-EBELN = it_ekpo-EBELN.
    it_final-EBELP = it_ekpo-EBELP.
    it_final-MATNR = it_ekpo-MATNR.
    it_final-MENGE = it_ekpo-MENGE.
    it_final-BELNR = it_ekbe-BELNR.
    it_final-BUZEI = it_ekbe-BUZEI.
    it_final-DMBTR = it_ekbe-DMBTR.
    "  (similarally other fields).
    append it_final.
    clear: it_final.
   endif.
endloop. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reg,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364508#M1234519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T08:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364509#M1234520</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;Try to modify it_ekbe because it has two records and u will get two records..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364509#M1234520</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-03-20T08:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364510#M1234521</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;Use the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: &lt;/P&gt;&lt;P&gt;begin of ty_output,&lt;/P&gt;&lt;P&gt;ebeln type ebeln,&lt;/P&gt;&lt;P&gt;ebelp type ebelp,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;menge type menge,&lt;/P&gt;&lt;P&gt;belnr type belnr,&lt;/P&gt;&lt;P&gt;buzei type buzei,&lt;/P&gt;&lt;P&gt;dmbtr type dmbtr,&lt;/P&gt;&lt;P&gt;end of ty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_output type ty_output,&lt;/P&gt;&lt;P&gt;        it_output type table of ty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;sort it_ekpo by ebeln ebelp.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from it_ekpo comparing ebeln ebelp.&lt;/P&gt;&lt;P&gt;sort it_ekbe by ebeln ebelp.&lt;/P&gt;&lt;P&gt;loop at it_ekpo into wa_ekpo.&lt;/P&gt;&lt;P&gt;clear wa_output.&lt;/P&gt;&lt;P&gt;clear wa_ekbe.&lt;/P&gt;&lt;P&gt;wa_output-ebeln = wa_ekpo-ebeln.&lt;/P&gt;&lt;P&gt;wa_output-ebelp = wa_ekpo-ebelp.&lt;/P&gt;&lt;P&gt;wa_output-matnr = wa_ekpo-matnr.&lt;/P&gt;&lt;P&gt;wa_output-menge = wa_ekpo-menge.&lt;/P&gt;&lt;P&gt;loop at it_ekbe into wa_ekbe where ebeln = wa_ekpo-ebeln and ebelp = wa_ekpo-ebelp.&lt;/P&gt;&lt;P&gt;     wa_output-belnr = wa_ekbe-belnr. &lt;/P&gt;&lt;P&gt;     wa_output-buzei = wa_ekbe-buzei.&lt;/P&gt;&lt;P&gt;     wa_output-dmbtr = wa_ekbe-dmbtr.&lt;/P&gt;&lt;P&gt;     append wa_output to it_output.&lt;/P&gt;&lt;P&gt;     clear wa_ekbe.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;clear wa_ekpo.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write the logic to displaying ALV output using IT_OUTPUT internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:58:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364510#M1234521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T08:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364511#M1234522</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;You already have two internal tables it_ekpo and it_ekbe.&lt;/P&gt;&lt;P&gt;Create an internal table with all the fields to be displayed in ALV Grid (say it_final).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
sort it_ekpo by ebeln ebelp.
sort it_ekpe by ebeln ebelp.

loop at it_ekbe.
  it_final-ebeln = it_ekbe-ebeln.
  it_final-ebelp = it_ekbe-ebelp.
  it_final-belnr = it_ekbe-belnr.
  it_final-buzei = it_ekbe-buzei.
  it_final-dmbtr = it_ekbe-dmbtr.
  read table it_ekpo with key ebeln = it_ekbe-ebeln
                              ebelp = it_ekbe-ebelp.
  if sy-subrc = 0.
    it-final-matnr = it-ekpo-matnr.
    it-final-menge = it-ekpo-menge.
  endif.
  append it_final.
  clear it_final.
  clear it_ekpo.
  clear it_ekbe.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But for this you need to make sure that internal table &lt;STRONG&gt;it_ekpo doesnt contains duplicates&lt;/STRONG&gt; for combination of &lt;STRONG&gt;ebeln and ebelp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use JOIN on these database table to fetch the records into a single internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 08:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364511#M1234522</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-20T08:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Joining internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364512#M1234523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Crete another final interrnal table with the fields&lt;/P&gt;&lt;P&gt;required from two table and then assing the corresponding fields from two itab to final itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_ekbe.&lt;/P&gt;&lt;P&gt;  read table it_ekpo with key ebeln = it_ekbe-ebeln&lt;/P&gt;&lt;P&gt;                              ebelp = it_ekbe-ebelp.&lt;/P&gt;&lt;P&gt;  if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;    it_fintab-EBELN = it_ekpo-EBELN.&lt;/P&gt;&lt;P&gt;    it_fintab-EBELP = it_ekpo-EBELP.&lt;/P&gt;&lt;P&gt;    it_fintab-MATNR = it_ekpo-MATNR.&lt;/P&gt;&lt;P&gt;    it_fintab-MENGE = it_ekpo-MENGE.&lt;/P&gt;&lt;P&gt;    it_fintab-BELNR = it_ekbe-BELNR.&lt;/P&gt;&lt;P&gt;    it_fintab-BUZEI = it_ekbe-BUZEI.&lt;/P&gt;&lt;P&gt;    it_fintab-DMBTR = it_ekbe-DMBTR.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;    append it_fintab.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   endif.&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;Rajendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 09:40:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/joining-internal-tables/m-p/5364512#M1234523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T09:40:25Z</dc:date>
    </item>
  </channel>
</rss>

