<?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: smtp_addr in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303998#M1917867</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@&lt;SPAN class="n fn"&gt;Gaurav Dubey, @&lt;SPAN class="n fn"&gt;Raymond Giuseppi, @&lt;SPAN class="n fn"&gt;Jürgen L, thanks a lot to you all. In fact it was my fault, I made some errors in variable declaration. Now it fixed and working properly. Thanks again for your response. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Oct 2015 10:56:28 GMT</pubDate>
    <dc:creator>SHYEIKH</dc:creator>
    <dc:date>2015-10-07T10:56:28Z</dc:date>
    <item>
      <title>smtp_addr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303994#M1917863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I'm a novice on ABAP programming.Is there anybody to help me to fix my issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is the my code. I just want to get the email address from xk03. But didn't get SMTP_ADDR(email) though I got the NAME1(vendor name) by the following inner join. But why I couldn't get the email/SMTP_ADDR. If anybody know the solution then please help me.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;STRONG&gt;SELECT smtp_addr smtp_srch name1 adrc&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;addrnumber &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;t_adrc &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;adrc&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; INNER &lt;SPAN class="L0S52"&gt;JOIN &lt;/SPAN&gt;adr6 &lt;SPAN class="L0S52"&gt;ON &lt;/SPAN&gt;adrc&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;addrnumber &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;adr6&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;addrnumber&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;adrc&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;name1 &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;s_name1 &lt;SPAN class="L0S52"&gt;AND&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; adrc&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;addrnumber &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;s_adrnr&lt;/STRONG&gt;&lt;SPAN class="L0S55"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 04:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303994#M1917863</guid>
      <dc:creator>SHYEIKH</dc:creator>
      <dc:date>2015-10-07T04:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: smtp_addr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303995#M1917864</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;Check at the table level if there is any value in SMTP_ADDR in ADR6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the query as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT adr6~smtp_addr adr6~smtp_srch adrc~addrnumber adrc~name1 INTO TABLE t_adrc FROM&lt;/P&gt;&lt;P&gt;adrc INNER JOIN adr6 ON adrc~addrnumber = adr6~addrnumber&lt;/P&gt;&lt;P&gt;WHERE adrc~name1 IN s_name1 AND&lt;/P&gt;&lt;P&gt;adrc~addrnumber IN s_adrnr.&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>Wed, 07 Oct 2015 05:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303995#M1917864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-07T05:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: smtp_addr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303996#M1917865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try to replace NAME1 with MC_NAME1 (uppercase)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 05:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303996#M1917865</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2015-10-07T05:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: smtp_addr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303997#M1917866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wonder about the 2 fields in the where part of the selection.&lt;/P&gt;&lt;P&gt;The name is very unspecific, you could even have duplicates, the address number is unique in your SAP, but from where could you even know this number.&lt;/P&gt;&lt;P&gt;If you know this number already then specifying the name is not needed and even can lead to the fact that you don't find a record because of a mismatch in the entered name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are working with international addresses then better use the address version (field NATION) to get a single hit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 06:06:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303997#M1917866</guid>
      <dc:creator>JL23</dc:creator>
      <dc:date>2015-10-07T06:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: smtp_addr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303998#M1917867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@&lt;SPAN class="n fn"&gt;Gaurav Dubey, @&lt;SPAN class="n fn"&gt;Raymond Giuseppi, @&lt;SPAN class="n fn"&gt;Jürgen L, thanks a lot to you all. In fact it was my fault, I made some errors in variable declaration. Now it fixed and working properly. Thanks again for your response. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 10:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smtp-addr/m-p/11303998#M1917867</guid>
      <dc:creator>SHYEIKH</dc:creator>
      <dc:date>2015-10-07T10:56:28Z</dc:date>
    </item>
  </channel>
</rss>

