<?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: Open SQL and UNION ALL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770964#M332918</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Aug 2016 19:22:40 GMT</pubDate>
    <dc:creator>subhamoy_ghosh</dc:creator>
    <dc:date>2016-08-09T19:22:40Z</dc:date>
    <item>
      <title>Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770958#M332912</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;I want to do a union all for two open SQL statements at the database level, e.g:&lt;/P&gt;&lt;P&gt;SQL statement 1&lt;/P&gt;&lt;P&gt;UNION ALL&lt;/P&gt;&lt;P&gt;SQL statement 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible with ABAP open sql? I know its possible via native sql or using manipulations via ABAP internal tables (FOR ALL ENTRIES, joins, etc) but I don't want to take these routes and want to do it with just a SQL instead...So is this possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 14:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770958#M332912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T14:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770959#M332913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A subquery?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 15:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770959#M332913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T15:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770960#M332914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Already covered the sub query option but its not applicable to what I need since I am interested in a union of datasets rather than the results of dataset derived from another dataset.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 15:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770960#M332914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T15:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770961#M332915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link perhaps it may help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/05/5b0e24d68849d4abcf034885ca82a0/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/05/5b0e24d68849d4abcf034885ca82a0/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 15:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770961#M332915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T15:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770962#M332916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with two open sql select statements works similar to UNION ALL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select f1 f2 from tab1 into corresponding  fields of table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select f1 f2 from tab2 appending corresponding fields of table itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 15:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770962#M332916</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-12-19T15:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770963#M332917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the info everyone. figured in the end that ABAP OPEN SQL couldn't handle UNIONs very well as per native SQL. Had wanted to transfer the processing logic to the DB but in the end of the day, I gave up and just did the union using internal tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 17:09:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770963#M332917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T17:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Open SQL and UNION ALL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770964#M332918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 19:22:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-sql-and-union-all/m-p/1770964#M332918</guid>
      <dc:creator>subhamoy_ghosh</dc:creator>
      <dc:date>2016-08-09T19:22:40Z</dc:date>
    </item>
  </channel>
</rss>

