<?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 table entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595169#M1083456</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I I have set of business partner numbers available in one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get the list of business partner numbers which are in this table but not in another standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Want to list the business partners in the internal table but not in the EEIN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Oct 2008 18:07:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-13T18:07:45Z</dc:date>
    <item>
      <title>table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595169#M1083456</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I I have set of business partner numbers available in one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get the list of business partner numbers which are in this table but not in another standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Want to list the business partners in the internal table but not in the EEIN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:07:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595169#M1083456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595170#M1083457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swarna,&lt;/P&gt;&lt;P&gt;Hope I understood your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are saying that you have one internal table which contains business partner number/&lt;/P&gt;&lt;P&gt;And another table also contains the business parnter number but want to remove from the the internal table 2. If this is the problem the below is the sample logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: V_TABIX TYPE SY-TABIX.
LOOP AT ITAB2.
  V_TABIX = SY-TABIX.
  READ TABLE ITAB1 WITH KEY BUSINESS_PARTNER = ITAB2-BUSINESS_PARTNER.
  IF SY-SUBRC = 0. 
    DELETE ITAB2 INDEX V_TABIX.
  ENDIF.
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chidanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595170#M1083457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595171#M1083458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Internal table is a temporary storage and will be available only during the programs runtime. I'm not sure what exactly is your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595171#M1083458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595172#M1083459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Advaid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get all the business parrtner numbers in the first internal table and not in the std table to be stored in another internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595172#M1083459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595173#M1083460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swarna,&lt;/P&gt;&lt;P&gt;Did you see what I have written in my previous reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chidanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:27:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595173#M1083460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595174#M1083461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Then simply loop at that internal table and append the entries to the other internal table.&lt;/P&gt;&lt;P&gt;something like this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at itab1 into wa.
move-corresponding wa to wa_2.
append wa_2 to itab_2
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595174#M1083461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595175#M1083462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Chaida&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595175#M1083462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595176#M1083463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 18:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/4595176#M1083463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T18:49:50Z</dc:date>
    </item>
  </channel>
</rss>

