<?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: Internal Tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046773#M88126</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will give somewhat...best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not t_konh[] is initial.&lt;/P&gt;&lt;P&gt;select &amp;lt;flds&amp;gt;&lt;/P&gt;&lt;P&gt;       from s071&lt;/P&gt;&lt;P&gt;       into table i_s071&lt;/P&gt;&lt;P&gt;       for all entries in t_konh&lt;/P&gt;&lt;P&gt;       where knumh = t_konh-knumh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;select &amp;lt;flds&amp;gt;&lt;/P&gt;&lt;P&gt;       from s0621&lt;/P&gt;&lt;P&gt;       into table i_s062&lt;/P&gt;&lt;P&gt;       for all entries in i_s071&lt;/P&gt;&lt;P&gt;       where SSOUR = i_s071-SSOUR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Dec 2005 14:44:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-21T14:44:16Z</dc:date>
    <item>
      <title>Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046769#M88122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to select data from two tables s071 and s060.&lt;/P&gt;&lt;P&gt;In my program all the data from different tables is being inserted into Internal table T_KONH.&lt;/P&gt;&lt;P&gt;now i need to select the data from s071 and s060 into a single internal table and compare the data being fetched on the basis of T_KOMH-knumh(using for all entries statement).&lt;/P&gt;&lt;P&gt;Also if there is more than one condition record found i need to sum them up(that can be done using collect statement).&lt;/P&gt;&lt;P&gt;ALL THE PROCESSING SHOULD NOT EFFECT THE PERFORMANCE.&lt;/P&gt;&lt;P&gt;Can someone suggest me with a good solution????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 14:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046769#M88122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T14:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046770#M88123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make the join  tables s071 and s060 and put it into one internal table i_join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at t_konh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read i_join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 14:21:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046770#M88123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T14:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046771#M88124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eswar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks! but i cannot use either inner or outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest some other solution. &lt;/P&gt;&lt;P&gt;As the program is too big so performance is the main issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 14:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046771#M88124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T14:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046772#M88125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if not t_konh[] is initial.&lt;/P&gt;&lt;P&gt;select &amp;lt;flds&amp;gt;&lt;/P&gt;&lt;P&gt;       from s071&lt;/P&gt;&lt;P&gt;       into table i_s071&lt;/P&gt;&lt;P&gt;       for all entries in t_konh&lt;/P&gt;&lt;P&gt;       where knumh = t_konh-knumh.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not i_s071[] is initial.&lt;/P&gt;&lt;P&gt;select &amp;lt;flds&amp;gt;&lt;/P&gt;&lt;P&gt;       from s0621&lt;/P&gt;&lt;P&gt;       into table i_s062&lt;/P&gt;&lt;P&gt;       for all entries in i_s071&lt;/P&gt;&lt;P&gt;       where SSOUR = i_s071-SSOUR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 14:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046772#M88125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T14:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046773#M88126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will give somewhat...best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not t_konh[] is initial.&lt;/P&gt;&lt;P&gt;select &amp;lt;flds&amp;gt;&lt;/P&gt;&lt;P&gt;       from s071&lt;/P&gt;&lt;P&gt;       into table i_s071&lt;/P&gt;&lt;P&gt;       for all entries in t_konh&lt;/P&gt;&lt;P&gt;       where knumh = t_konh-knumh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;select &amp;lt;flds&amp;gt;&lt;/P&gt;&lt;P&gt;       from s0621&lt;/P&gt;&lt;P&gt;       into table i_s062&lt;/P&gt;&lt;P&gt;       for all entries in i_s071&lt;/P&gt;&lt;P&gt;       where SSOUR = i_s071-SSOUR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 14:44:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/1046773#M88126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T14:44:16Z</dc:date>
    </item>
  </channel>
</rss>

