<?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: OO ABAP Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491851#M1746178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could define a local structured internal table in the method with only the field(s) required for the SELECT statement. At start of method use a LOOP ASSIGNING a ANY TYPE field-symbols then assign the component required to another FIELD-SYMBOLS of the required type and append it to the local internal table. Use this local internal table in the FOR ALL ENTRIES clause.&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>Thu, 13 Jun 2013 07:14:06 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2013-06-13T07:14:06Z</dc:date>
    <item>
      <title>OO ABAP Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491848#M1746175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't figure out how to do the following:&lt;/P&gt;&lt;P&gt;Pass an internal table to a ABAP Method by reference&lt;/P&gt;&lt;P&gt;In the Method, use the internal table data to do a SELECT FROM INTO TABLE FOR ALL ENTRIES WHERE.&lt;/P&gt;&lt;P&gt;The internal table I'm passing can have different structure but will always have the fields used in the WHERE clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried typing it "Table" in the method parameters but then I can't use the field name in the WHERE clause since it's not explicitly defined.&amp;nbsp; I could loop thru the table using field symbols and recreate the table but that defeats the purpose.&amp;nbsp; I might as well do the SELECT outside of the method and pass the end result to the Class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 01:19:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491848#M1746175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-13T01:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: OO ABAP Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491849#M1746176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dae, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you check the below threads : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="active_link" href="https://answers.sap.com/message/14024306#14024306"&gt;http://scn.sap.com/message/14024306&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/3337943"&gt;http://scn.sap.com/thread/3337943&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 02:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491849#M1746176</guid>
      <dc:creator>UmaArjunan</dc:creator>
      <dc:date>2013-06-13T02:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: OO ABAP Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491850#M1746177</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;Have you done something like shown in the screenshot for using as reference Check the entry ET_KEYVALUE that should pass an internal table to a ABAP Method by reference, I got confused on the below statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;I've tried typing it "Table" in the method parameters but then I can't use the field name in the WHERE clause since it's not explicitly defined.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you clarify a bit more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;BR /&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 02:18:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491850#M1746177</guid>
      <dc:creator>arindam_m</dc:creator>
      <dc:date>2013-06-13T02:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: OO ABAP Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491851#M1746178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could define a local structured internal table in the method with only the field(s) required for the SELECT statement. At start of method use a LOOP ASSIGNING a ANY TYPE field-symbols then assign the component required to another FIELD-SYMBOLS of the required type and append it to the local internal table. Use this local internal table in the FOR ALL ENTRIES clause.&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>Thu, 13 Jun 2013 07:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491851#M1746178</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-06-13T07:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: OO ABAP Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491852#M1746179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;l_i_ref&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: i_tab TYPE t_tab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ASSIGN i_temp TO &amp;lt;l_i_ref&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT matnr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maktx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM z_table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO TABLE i_tab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FOR ALL ENTRIES IN &amp;lt;l_i_ref&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE (matnr EQ &amp;lt;l_i_ref&amp;gt;-matnr ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 07:40:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491852#M1746179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-13T07:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: OO ABAP Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491853#M1746180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly as in the links posted by &lt;STRONG style="font-size: 11.111111640930176px; background-color: #ffffff; color: #333333;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://answers.sap.com/people/bi.abaper" id="jive-19994025878413590138856" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #3778c7;"&gt;Uma Arjunan&lt;/A&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thread locked. Please search before posting questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 07:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oo-abap-help/m-p/9491853#M1746180</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-06-13T07:54:32Z</dc:date>
    </item>
  </channel>
</rss>

