<?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: Different data types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863568#M928614</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;Thanks for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not clear about this one. can you please give an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 May 2008 07:19:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-19T07:19:20Z</dc:date>
    <item>
      <title>Different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863565#M928611</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 retrive data 2 tables using forall entries. and tables are EQUI and AUSP.&lt;/P&gt;&lt;P&gt;EQUI table primary key is EQUNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here EQUNR is equal to AUSP table OBJEK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is here EQUNR and OBJEK have different data types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me how to retrive data using for all entries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 09:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863565#M928611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T09:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863566#M928612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The internal table for retrieving the data should be extended with an additional column. This column you have to define the same as EQUNR. Now move all entries from AUSP to this new column and use that as comparison in FOR ALL ENTRIES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 09:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863566#M928612</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-16T09:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863567#M928613</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;do this way ... take a new field in internal table OBJEK_N of type OBJEK in the internal table  holding EQUI table details ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at it_equi.
  itab-objek_n = it_equi-equnr.
  modify it_equi index sy-tabix transporting objek_n.
endloop.
if not it_equi[] is initial.
   select * from ausp into it_ausp 
    for all entries in it_equi
    where objek = it_equi-objek_n and 
             &amp;lt;conditions&amp;gt;
 endif.           &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 09:30:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863567#M928613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T09:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863568#M928614</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;Thanks for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not clear about this one. can you please give an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 07:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863568#M928614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T07:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Different data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863569#M928615</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;Thanks for your reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please can explian clearly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 07:59:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/different-data-types/m-p/3863569#M928615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T07:59:29Z</dc:date>
    </item>
  </channel>
</rss>

