<?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: error message appears ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583091#M262974</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it means that this field is present in both tables of the join,  make sure to specify the field that you want like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;table_name~&amp;lt;/b&amp;gt;ntgew.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Sep 2006 14:11:19 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-09-21T14:11:19Z</dc:date>
    <item>
      <title>error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583089#M262972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using one inner join then i got this message.&lt;/P&gt;&lt;P&gt;what does it means ?&lt;/P&gt;&lt;P&gt;The column name "NTGEW" has two meanings. ABAP/4 Open SQL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:09:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583089#M262972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T14:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583090#M262973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attach your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583090#M262973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T14:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583091#M262974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it means that this field is present in both tables of the join,  make sure to specify the field that you want like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;table_name~&amp;lt;/b&amp;gt;ntgew.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583091#M262974</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-21T14:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583092#M262975</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;kindly chk the syntax of ur inner join with&lt;/P&gt;&lt;P&gt;the below sample code and let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table emp &lt;/P&gt;&lt;P&gt;empno name&lt;/P&gt;&lt;P&gt;a sasi&lt;/P&gt;&lt;P&gt;b xxx &lt;/P&gt;&lt;P&gt;c yyy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table sal&lt;/P&gt;&lt;P&gt;empno salary&lt;/P&gt;&lt;P&gt;a 1000&lt;/P&gt;&lt;P&gt;b 2000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner join&lt;/P&gt;&lt;P&gt;****************&lt;/P&gt;&lt;P&gt;select e&lt;SUB&gt;empno e&lt;/SUB&gt;name &lt;/P&gt;&lt;P&gt;s~sal &lt;/P&gt;&lt;P&gt;into table int_table&lt;/P&gt;&lt;P&gt;from emp as e&lt;/P&gt;&lt;P&gt;inner join sal&lt;/P&gt;&lt;P&gt;on &lt;/P&gt;&lt;P&gt;e&lt;SUB&gt;empno = s&lt;/SUB&gt;empno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you made inner join between table a and b by emp no &lt;/P&gt;&lt;P&gt;the selection retrives only if the condition satisfy the output will be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a sasi 1000&lt;/P&gt;&lt;P&gt;b xxx 2000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if both tables have same field, u shuld apecifiaccly mention the table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table_name~field_name.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583092#M262975</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-21T14:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583093#M262976</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;Probably It means that the NTGEW is available in both the tables you are joining. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:12:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583093#M262976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T14:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583094#M262977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample code for Inner join &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  SELECT a&lt;SUB&gt;serviceid a&lt;/SUB&gt;service b~sp_name&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE i_eservprov&lt;/P&gt;&lt;P&gt;         FROM eservprov AS a INNER JOIN eservprovt AS b&lt;/P&gt;&lt;P&gt;         ON a&lt;SUB&gt;serviceid = b&lt;/SUB&gt;serviceid&lt;/P&gt;&lt;P&gt;           WHERE a~service = '0007'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583094#M262977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T14:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: error message appears ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583095#M262978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adams,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may be  NTGEW field exists in the 2 tables that u r joining&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; so in the join conditions specify from which table u r using that field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; eg : t1~NTGEW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 14:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-appears/m-p/1583095#M262978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T14:17:23Z</dc:date>
    </item>
  </channel>
</rss>

