<?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 temporary table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919926#M1148110</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i modify or change this SQL use inner join?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ta_cust2.&lt;/P&gt;&lt;P&gt;    l_index1 = sy-tabix.&lt;/P&gt;&lt;P&gt;    read table ta_ymeq with key plnnr = ta_cust2-plnnr.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      delete ta_cust2 index l_index1.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      clear ta_cust2.&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;i want to select the record in ta_cust2 inner join ta_ymeq key plnnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Fidah on Dec 22, 2008 3:09 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Dec 2008 01:51:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-22T01:51:27Z</dc:date>
    <item>
      <title>temporary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919926#M1148110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i modify or change this SQL use inner join?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ta_cust2.&lt;/P&gt;&lt;P&gt;    l_index1 = sy-tabix.&lt;/P&gt;&lt;P&gt;    read table ta_ymeq with key plnnr = ta_cust2-plnnr.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      delete ta_cust2 index l_index1.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      clear ta_cust2.&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;i want to select the record in ta_cust2 inner join ta_ymeq key plnnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Fidah on Dec 22, 2008 3:09 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 01:51:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919926#M1148110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T01:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: temporary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919927#M1148111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do search query like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT field1 field2 FROM Table &lt;STRONG&gt;APPENDING TABLE ta_cust2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN ta_ymeq WHERE plnnr = ta_ymeq-plnnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 02:33:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919927#M1148111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T02:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: temporary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919928#M1148112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the SQL select want we put the original table in &lt;STRONG&gt;FROM table&lt;/STRONG&gt; how about i want to get it from temporary table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 02:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919928#M1148112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T02:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: temporary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919929#M1148113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot use SQL statement on Temporary table.&lt;/P&gt;&lt;P&gt;You can use Append statement after reading the tempory table with key plnnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 02:42:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919929#M1148113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T02:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: temporary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919930#M1148114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oic. how can i modify the read table statement to add inner join ? i try but still error..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 02:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/temporary-table/m-p/4919930#M1148114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T02:45:13Z</dc:date>
    </item>
  </channel>
</rss>

