<?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 would like to do coding in abap oops in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939697#M1797095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; i have a query to write the abap oops code&lt;/P&gt;&lt;P&gt;where i got some data at main level and when i am entering into ooops level that data is converting into some vierd text and not able to understand how to get the values from that text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this&lt;/P&gt;&lt;P&gt;Refernce ME-&amp;gt;MY_STATE-&amp;gt;HEADER&lt;/P&gt;&lt;P&gt;Object&amp;nbsp;&amp;nbsp; {O:275*\FUNCTION-POOL=MEREQ\CLASS=LCL_REQ_&lt;/P&gt;&lt;P&gt;View&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not able to put logic on this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Dec 2013 07:56:08 GMT</pubDate>
    <dc:creator>former_member778994</dc:creator>
    <dc:date>2013-12-09T07:56:08Z</dc:date>
    <item>
      <title>would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939697#M1797095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; i have a query to write the abap oops code&lt;/P&gt;&lt;P&gt;where i got some data at main level and when i am entering into ooops level that data is converting into some vierd text and not able to understand how to get the values from that text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this&lt;/P&gt;&lt;P&gt;Refernce ME-&amp;gt;MY_STATE-&amp;gt;HEADER&lt;/P&gt;&lt;P&gt;Object&amp;nbsp;&amp;nbsp; {O:275*\FUNCTION-POOL=MEREQ\CLASS=LCL_REQ_&lt;/P&gt;&lt;P&gt;View&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not able to put logic on this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Dec 2013 07:56:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939697#M1797095</guid>
      <dc:creator>former_member778994</dc:creator>
      <dc:date>2013-12-09T07:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939698#M1797096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravikumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ME represent the Current instance of the class.I will give you one interesting example regarding usage of ME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose we have one class two method both method are instance Method&lt;/P&gt;&lt;P&gt;Method1.&lt;/P&gt;&lt;P&gt;Method2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you try to use that method outside the class you need one Object to call the class method.&lt;/P&gt;&lt;P&gt;But if you are calling the same method within class you don't need to use the Object reference.Because that time automatically Operator ME work.&lt;/P&gt;&lt;P&gt;The calling object reference is automatically come in the ME operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method( )&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;method2( ). " Externally code.&lt;/P&gt;&lt;P&gt;But while calling this SAP automatic Use the ME&amp;nbsp; operator in front of the Method2. and it becomes like this:-&lt;/P&gt;&lt;P&gt;me-&amp;gt;method2( ).&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Object&amp;nbsp;&amp;nbsp; {O:275*\FUNCTION-POOL=MEREQ\CLASS=LCL_REQ_ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;First O:275 tell you the memory location where the object is stored and the Second For which Repository object you have create object. It may be class, Class Pool, Function pool.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Nishant Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Dec 2013 09:08:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939698#M1797096</guid>
      <dc:creator>nishantbansal91</dc:creator>
      <dc:date>2013-12-09T09:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939699#M1797097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Dec 2013 09:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939699#M1797097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-09T09:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939700#M1797098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishant&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;i am not able to understand the below code&lt;/P&gt;&lt;P&gt;{O:813*\FUNCTION-POOL=MEREQ\CLASS=LCL_REQ_ITEM_STATE}-ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the requirement is i have to fetch the data from me--&amp;gt;MY_state--&amp;gt;ITEM-werks and need to get RESLO from one of our Z FM which is working i mean i will be able to get the RESLO from that FM if i get thevalues from the above class ME--&amp;gt;MY_STATE--&amp;gt;ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But not able to get any values from the above class .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may be i am not able to code correctly from above class ME--&amp;gt;MY_STATE--&amp;gt;ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once if i get the values from this class then i will get reslo from Z FM and the same can be exported to ME--&amp;gt;MY_STATE. so that my requirement gets full filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest on how to go ahead&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Dec 2013 06:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939700#M1797098</guid>
      <dc:creator>former_member778994</dc:creator>
      <dc:date>2013-12-12T06:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939701#M1797099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want to know about this value {O:813*\FUNCTION-POOL=MEREQ\CLASS=LCL_REQ_ITEM_STATE}-ITEM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for which object variable is exactly referring to this mentioned value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 11:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939701#M1797099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-16T11:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939702#M1797100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;Try to double-click on that reference in debugger to get value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 11:59:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939702#M1797100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-16T11:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939703#M1797101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 13:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939703#M1797101</guid>
      <dc:creator>former_member778994</dc:creator>
      <dc:date>2013-12-16T13:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939704#M1797102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For ITEM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 13:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939704#M1797102</guid>
      <dc:creator>former_member778994</dc:creator>
      <dc:date>2013-12-16T13:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939705#M1797103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought you are asking about debugger (:&lt;/P&gt;&lt;P&gt;If you want to read attribute of a class, you should declare this attribute as public, or use a method which returns it as a value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 14:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939705#M1797103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-16T14:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939706#M1797104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rajkumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check that Item field is not shown in RED color. if&amp;nbsp; before that field is RED color means that you can't change the value outside the class. But in debugger we are able to change the value also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First check your ME reference variable Contain reference of Function Module&amp;nbsp; &lt;STRONG style="color: #333333; font-size: 12.222222328186035px;"&gt;MEREQ\CLASS=LCL_REQ_ITEM_STATE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-size: 12.222222328186035px;"&gt;If your ME contain same Reference so you can easily access the value.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-size: 12.222222328186035px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-size: 12.222222328186035px;"&gt;Let me know for other Problem.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-size: 12.222222328186035px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-size: 12.222222328186035px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 15:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939706#M1797104</guid>
      <dc:creator>nishantbansal91</dc:creator>
      <dc:date>2013-12-16T15:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: would like to do coding in abap oops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939707#M1797105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your code you can write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_werks = me-&amp;gt;my_state-ITEM-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rest you knew already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 08:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/would-like-to-do-coding-in-abap-oops/m-p/9939707#M1797105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-17T08:00:26Z</dc:date>
    </item>
  </channel>
</rss>

