<?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: To fetch data from object reference in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951138#M1154466</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello sidh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   in place of object shld i write my class name and in place of name i shld write the static attribute name rite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;warm regards,&lt;/P&gt;&lt;P&gt;Naveen M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Dec 2008 06:47:21 GMT</pubDate>
    <dc:creator>MNaveen</dc:creator>
    <dc:date>2008-12-29T06:47:21Z</dc:date>
    <item>
      <title>To fetch data from object reference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951135#M1154463</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 have an internal table which contains object refrence and points to some class. I am trying to fetch the data stored in the static attributes of that class. How can i do this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any input will be very very helpful.. Thanks in advance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards, &lt;/P&gt;&lt;P&gt;Naveen M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 06:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951135#M1154463</guid>
      <dc:creator>MNaveen</dc:creator>
      <dc:date>2008-12-29T06:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data from object reference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951136#M1154464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try out this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT it_table INTO wa_table.
  name = wa_table-object=&amp;gt;name.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 06:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951136#M1154464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-29T06:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data from object reference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951137#M1154465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this type of coding, itab contains a field oref1 as an object reference. OREF1 object has a static attribute called data.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at itab into wa.

wa_data = wa-oref1=&amp;gt;data.

write:/ wa_data.

endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 06:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951137#M1154465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-29T06:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data from object reference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951138#M1154466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello sidh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   in place of object shld i write my class name and in place of name i shld write the static attribute name rite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;warm regards,&lt;/P&gt;&lt;P&gt;Naveen M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 06:47:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951138#M1154466</guid>
      <dc:creator>MNaveen</dc:creator>
      <dc:date>2008-12-29T06:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data from object reference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951139#M1154467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If they are Static Attributes, you can access then directly using class name as:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class_name=&amp;gt;attr1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 06:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951139#M1154467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-29T06:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data from object reference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951140#M1154468</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 the suggestion. but they dint work. The internal table is of some table type. And this table type has a reference type which is name of an interface. This interface has some methods in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i go into debugging mode and check for the data stored in the table i find it holding memory of some class and that has some static attributes. I am unable to understand how this is actually working./&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;naveen m&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 07:04:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-from-object-reference/m-p/4951140#M1154468</guid>
      <dc:creator>MNaveen</dc:creator>
      <dc:date>2008-12-29T07:04:08Z</dc:date>
    </item>
  </channel>
</rss>

