<?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: join between 2 different field, in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275469#M1387346</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;post close&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Oct 2009 10:14:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-26T10:14:35Z</dc:date>
    <item>
      <title>join between 2 different field,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275465#M1387342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to everybody&lt;/P&gt;&lt;P&gt;I should join the table EQUI and AUSP. Below the code, but I get a mistale because the fileds 'objek' and 'equnr 'don't have same type and same lenght.&lt;/P&gt;&lt;P&gt;Theare are some techique to find the solution? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*joi between equi and ausp&lt;/P&gt;&lt;P&gt;  SELECT * FROM ausp&lt;/P&gt;&lt;P&gt;    INTO CORRESPONDING FIELDS OF lt_asup&lt;/P&gt;&lt;P&gt;      FOR ALL ENTRIES IN lt_equi&lt;/P&gt;&lt;P&gt;       WHERE objek = lt_equi-equnr.&lt;/P&gt;&lt;P&gt;  APPEND lt_asup.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 09:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275465#M1387342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T09:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: join between 2 different field,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275466#M1387343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use field EQUI-CUOBJ instead of EQUI-EQUNR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 10:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275466#M1387343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T10:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: join between 2 different field,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275467#M1387344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could add a helper field in lt_equi with the format of ausp-objek and fill this with the equnr values before the selection.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 10:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275467#M1387344</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-10-26T10:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: join between 2 different field,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275468#M1387345</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 just saw the tables EQUI and AUSP. &lt;/P&gt;&lt;P&gt;The field OBJEK in table AUSP is Char of length 50.&lt;/P&gt;&lt;P&gt;The field EQUNR in table EQUI is Char of length 18.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to your code you would have already selected the EQUI-EQUNR in an internal table. Now move these entries to another internal table with a field EQUNR which is declared as Char of length 50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you use your select statement both the fields would have the same type and length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Harini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 10:14:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275468#M1387345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T10:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: join between 2 different field,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275469#M1387346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;post close&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 10:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-between-2-different-field/m-p/6275469#M1387346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T10:14:35Z</dc:date>
    </item>
  </channel>
</rss>

