<?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: Dump in Inner join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677147#M1575694</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;    Split your select ... write innerjoin on 3 tables and write for all entries on the 4th table , or give the individual field names&lt;/P&gt;&lt;P&gt;    while selecting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Feb 2011 08:37:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-10T08:37:27Z</dc:date>
    <item>
      <title>Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677146#M1575693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;    I am selecting data (Around 100 fields)from 4 different tables(a,b,c,d) using INNER JOIN .I get the Runtime error (DUMP) SAPSQL_AMBIGUOUS_FIELDNAME  .Since one of the selection field is availble in both c &amp;amp; d tables but i need that to be selected from c alone.&lt;/P&gt;&lt;P&gt;Now i have used Select * to select the fields.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT *
INTO CORRESPONDING FIELDS OF TABLE int_tab
FROM a AS a INNER JOIN b AS b
ON a~key1 = b~key1
INNER JOIN c as c
on c~key2 = a~key2
INNER JOIN d as d 
on d~key2 = a~key2
where......&lt;/CODE&gt;&lt;/PRE&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;srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 08:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677146#M1575693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T08:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677147#M1575694</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;    Split your select ... write innerjoin on 3 tables and write for all entries on the 4th table , or give the individual field names&lt;/P&gt;&lt;P&gt;    while selecting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 08:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677147#M1575694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T08:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677148#M1575695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sri&lt;/P&gt;&lt;P&gt;I would recomend to split your selection query.&lt;/P&gt;&lt;P&gt;there are some common fields in all the four tables.&lt;/P&gt;&lt;P&gt;create 4 diffrent internal table and use for all entries statement.&lt;/P&gt;&lt;P&gt;and select only the fields you require do not use select *.&lt;/P&gt;&lt;P&gt;because select * will fetch all the fields from all the 4 table and because fields are common hence the dump is obvious.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So use for all entries statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 08:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677148#M1575695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T08:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677149#M1575696</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;First of all it is not recommended to use inner join on 4 tables also while using join u have to give the field name along with the table name to specify from which table the field should be picked u can use select statement as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a~fieldname(field name from table a)&lt;/P&gt;&lt;P&gt;          a~fieldname(field name from table a)&lt;/P&gt;&lt;P&gt;          b~fieldname(field name from table b)&lt;/P&gt;&lt;P&gt;          c~fieldname(field name from table c)&lt;/P&gt;&lt;P&gt;and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;shivraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 09:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677149#M1575696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T09:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677150#M1575697</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;ShrivajSina is right: You can not use SELECT * if you have fields of the same name in more than one of the joined tables (which is almost always the case).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dataase interface always translates the * into all available field names resulting in a big performance waste. This is done out of pure laziness with upward compatibility guaranteed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT tab_a~field_1 tab_b~field_2
INTO CORRESPONDING FIELDS OF TABLE int_tab
FROM tab_a INNER JOIN tab_b
ON tab_a~key1 = tab_b~key1
INNER JOIN tab_c
on tab_c~key2 = tab_a~key2
INNER JOIN tab_d 
on tab_d~key2 = tab_a~key2
where......&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, in ABAP, you do not need to specify an ALIAS with keyword AS. This is only required if you join a table with itself.&lt;/P&gt;&lt;P&gt;Code is more transparent if you do not use ALIAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 11:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677150#M1575697</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-02-10T11:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677151#M1575698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I have observed (SQL traces, release 7.00), the DBI converts the * not into all fields of the involved DB tables, but rather all fields of int_tab (as per declaration), which means usually significantly less fields than in the DB tables. So there is much less of a performance problem than commonly assumed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is still the problem with ambiguous field names, however I have not seen the short dump SAPSQL_AMBIGUOUS_FIELDNAME  in his context, so I wonder if this occurred in previous releases where the logic I described above might not have been in effect yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 12:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677151#M1575698</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-02-10T12:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677152#M1575699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Thomas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that's new to me that the DBI converts the * to the fields of the target area. I will check with our system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 22:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677152#M1575699</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-02-10T22:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677153#M1575700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as others have said, state the exact source of the fields you wish to retrieve. This is always good practice even if a shortdump does not eventuate as you are in control of the sourceing of each of the fields rather han being at the whim of the sql making an arbitrary decision. It also makes it easier for reader's of the sql to understand without them having to delve into the structure of the tables to discover where they all come from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with clemens with the use of aliases. I find it more confusing working out what a~ and b~ are rather than seeing the actual names like mara~ and marc~. But I do use aliases sometimes when I have very long table names which make the qualifications unwieldy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 22:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677153#M1575700</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2011-02-10T22:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677154#M1575701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually I am in favor of the a~ b~ aliases, simply because the fieldlist is much shorter an easier to read, and ou should be aware that only old tables have the very short names, newer ones have much longer names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally the a, b, c gives an intended order, whcih does not have to identical to the actually executed order, but it is good style if the order is one, which makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I do not understand the original question, the dump of the system is perfectly o.k. for me, if there are 2 fields with the same name, then you MUST specif which one you need. No dump would be a bug, because there is 50% chance that you get the wrong field and an unknown chance that it is different from the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Feb 2011 17:02:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677154#M1575701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-12T17:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677155#M1575702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As the question is still marked as open, let me add another cent:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is true that the field list takes more space if you do do not use an alias. I prefer to gain transparency just by formatting, i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT 
  tab_a~field_1 
  tab_a~field_2 
  tab_a~field_3 
  tab_b~field_4
  tab_b~field_5
  tab_b~field_6
  tab_c~field_7
  tab_c~field_8
  tab_d~field_9
INTO CORRESPONDING FIELDS OF TABLE int_tab
FROM tab_a INNER JOIN tab_b
  ON tab_a~key1 = tab_b~key1
INNER JOIN tab_c
  on tab_c~key2 = tab_a~key2
INNER JOIN tab_d 
  on tab_d~key2 = tab_a~key2
where......&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way you get it on first glance as opposed to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT a~field_1 a~field_2 a~field_3 b~field_4 b~field_5 b~field_6 c~field_7 c~field_8 d~field_9 INTO CORRESPONDING FIELDS OF TABLE int_tab&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the new editor we can see more lines anyway, remember the old step-loop-editor?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Feb 2011 18:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677155#M1575702</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-02-12T18:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677156#M1575703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sri,&lt;/P&gt;&lt;P&gt;   Give the fieldnames in the select query instead of ' * '. Because you are fetching from four different tables. How the control knows Which all fileds to be selected from which table.? So we need to make it clear by giving the fieldnames witlh table alias.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like select a~ xxxx&lt;/P&gt;&lt;P&gt;                  a~key1&lt;/P&gt;&lt;P&gt;                  b~key1&lt;/P&gt;&lt;P&gt;                  b~yyyy&lt;/P&gt;&lt;P&gt;                  INTO CORRESPONDING FIELDS OF TABLE int_tab&lt;/P&gt;&lt;P&gt;                 FROM a AS db_tab1 INNER JOIN b AS db_tab2&lt;/P&gt;&lt;P&gt;                  ON a&lt;SUB&gt;key1 = b&lt;/SUB&gt;key1 &lt;/P&gt;&lt;P&gt;                 where conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Now you are making the control clear to fetch XXXX and key1 from a(db_tab1) and key1, YYYY from table b(db_tab2). though you need all the fileds, you have to give seperately instead of *.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chellamma Chandrasekar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 06:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677156#M1575703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-23T06:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677157#M1575704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chellama,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;although this thread is already passed, you might be interested in understanding the use of an ALIAS in open SQL clauses:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the AS clause to define a new name (alias) for a fieldname or table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use select a b c as d into corresponding fields of destination if you want the values of fields a and b to be moved to fields a and b of the destination structure but the value of field c to go to field d of destination structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For table names it is the same logic. Yor sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select a~ xxxx
a~key1
b~key1
b~yyyy
INTO CORRESPONDING FIELDS OF TABLE int_tab
FROM a AS db_tab1 INNER JOIN b AS db_tab2
ON a~key1 = b~key1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is syntactically wrong because you defined the alias db_tab1for table a and db_tab2 for table b. Now the fields a&lt;SUB&gt;key1 and so on are unknown, you could use only db_tab1&lt;/SUB&gt;key1 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Join conditions, you will almost never need an alias clause. Corrected code is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
select a~xxxx
a~key1
b~key1
b~yyyy
INTO CORRESPONDING FIELDS OF TABLE int_tab
FROM a
INNER JOIN b 
ON a~key1 = b~key1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is much more transparent for the one who has to read and understand the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 07:37:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677157#M1575704</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-03-23T07:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677158#M1575705</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;May people had discussion on your problem, I am not doing any think new, &lt;STRONG&gt;SAPSQL_AMBIGUOUS_FIELDNAME&lt;/STRONG&gt; error  can happend only due  to name of fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your SQL you are mention *  (i.e. All fields for selection ) which mean diffrent table have same fields name, So you have to define the required fields name instant of * with alias name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your internal table have only one fields for that column and in your select having select * having multiple fields. You have to define fields name which your required as per you internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 12:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677158#M1575705</guid>
      <dc:creator>ravi_lanjewar</dc:creator>
      <dc:date>2011-03-25T12:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in Inner join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677159#M1575706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I got it. Thank you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chellamma Chandrasekar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Mar 2011 06:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-inner-join/m-p/7677159#M1575706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-30T06:03:37Z</dc:date>
    </item>
  </channel>
</rss>

