<?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: Objects instantiation - variable value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333201#M1638404</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;Well I guess this is just an object identification number. Looks like it is beeing increased each time you create a new object...&lt;/P&gt;&lt;P&gt;If you are using a local class, you will see that the first time your create your object, the number will be 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not able to search for any formal documentation right now on the subject however... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;Manu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Nov 2011 10:46:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-03T10:46:13Z</dc:date>
    <item>
      <title>Objects instantiation - variable value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333200#M1638403</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;I am curious about what is the number in an object value for... (when in debug mode).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;SPAN __jive_macro_name="O"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;What is the number 13 for? Is that a pointer to the object?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am creating an object like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TRY.
      CREATE OBJECT ob_inb_dlvry
        EXPORTING
          i_vbeln = lips-vbeln.
    CATCH cx_root INTO ex_ob_cx_root.
      ex_text      = ex_ob_cx_root-&amp;gt;get_text( ).
      ex_text_long = ex_ob_cx_root-&amp;gt;get_longtext( ).
endtry.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When in debug mode my object looks like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Variable: ob_inb_dlvry
Value: {O:13*\CLASS=ZCL_INBOUND_DELIVERY}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the number 13 for? Is that a pointer to the object?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your response is greatly appreciated! Thank you very much in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 09:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333200#M1638403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-03T09:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Objects instantiation - variable value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333201#M1638404</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;Well I guess this is just an object identification number. Looks like it is beeing increased each time you create a new object...&lt;/P&gt;&lt;P&gt;If you are using a local class, you will see that the first time your create your object, the number will be 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not able to search for any formal documentation right now on the subject however... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;Manu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 10:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333201#M1638404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-03T10:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Objects instantiation - variable value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333202#M1638405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is in identifier to identify the object reference. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see that it is noted in this page: [Names for Anonymous Storage Objects|http://help.sap.com/saphelp_nw70/helpdata/en/7f/061640033ae569e10000000a155106/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="O"&gt;&lt;/SPAN&gt; .. Instance of my_class class with internal identification 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 13:48:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333202#M1638405</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2011-11-03T13:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Objects instantiation - variable value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333203#M1638406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2011 11:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/objects-instantiation-variable-value/m-p/8333203#M1638406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-04T11:51:32Z</dc:date>
    </item>
  </channel>
</rss>

