<?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: having a problem with internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346240#M1035082</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Geetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change this &lt;STRONG&gt;where tt_3rd- field1 = tt_1st- field2&lt;/STRONG&gt; condition to &lt;STRONG&gt;tt_3rd-field1 = tt_2nd-field2&lt;/STRONG&gt; , because you are going for FOR ALL ENTRIES on 2nd table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Aug 2008 05:58:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-21T05:58:07Z</dc:date>
    <item>
      <title>having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346235#M1035077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good morning every every one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i  having a problem with internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 st custom table   into internal table tt_1st&lt;/P&gt;&lt;P&gt;2nd custom  table  into internal table  tt_2nd&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;3rd vbak table  into internal table  tt_3rd  for all entries with tt_2nd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_3rd- field1 = tt_1st- field2&lt;/P&gt;&lt;P&gt;          tt_3rd-field2 = tt_2nd-field3&lt;/P&gt;&lt;P&gt;          tt_3rd-field3 = tt_2nd-field4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3rd internal table have to compare data with 1st internal and 2nd internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; { if i use like this the 3rd internal is saying that tt_1st-field doesnot containing the  field2 }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to solve this problem can you please give me the clear description about this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;geetha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2008 05:44:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346235#M1035077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-21T05:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346236#M1035078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Geetha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you want to do following as you are using FOR ALL ENTRIES to fill the 3rd table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Old&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_3rd- field1 = tt_1st- field2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;New&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_3rd- field1 = tt_2nd- field2&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;Amol Lohade&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2008 05:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346236#M1035078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-21T05:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346237#M1035079</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;1. Select the entries for table3 using table 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_3rd-field2 = tt_2nd-field3&lt;/P&gt;&lt;P&gt;          tt_3rd-field3 = tt_2nd-field4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Loop the 3rd internal table and compare with the first internal table 2nd field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at table3 into wa3.
read table table1 into wa1 with key field2 = wa3-fld1.
if sy-subrc ne 0.
delete table3 from wa3.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2008 05:49:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346237#M1035079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-21T05:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346238#M1035080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Actually the command :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tt_3rd- field1 = tt_1st- field2&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is incorrect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luck,&lt;/P&gt;&lt;P&gt;Bhumika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2008 05:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346238#M1035080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-21T05:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346239#M1035081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your query wrong things is highlighted as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3rd vbak table into internal table tt_3rd for all entries with tt_2nd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_3rd- field1 &lt;STRONG&gt;= tt_1st- field2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;tt_3rd-field2 = tt_2nd-field3&lt;/P&gt;&lt;P&gt;tt_3rd-field3 = tt_2nd-field4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where tt_3rd- field1 &lt;STRONG&gt;= tt_2nd- field2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;tt_3rd-field2 = tt_2nd-field3&lt;/P&gt;&lt;P&gt;tt_3rd-field3 = tt_2nd-field4&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;rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2008 05:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346239#M1035081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-21T05:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346240#M1035082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Geetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change this &lt;STRONG&gt;where tt_3rd- field1 = tt_1st- field2&lt;/STRONG&gt; condition to &lt;STRONG&gt;tt_3rd-field1 = tt_2nd-field2&lt;/STRONG&gt; , because you are going for FOR ALL ENTRIES on 2nd table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2008 05:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346240#M1035082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-21T05:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: having a problem with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346241#M1035083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;vg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2008 09:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/having-a-problem-with-internal-table/m-p/4346241#M1035083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-29T09:41:22Z</dc:date>
    </item>
  </channel>
</rss>

