<?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 Copy object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001380#M956070</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 two objects declared as follows.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 w_document          TYPE REF TO i_oi_document_proxy,
  w_handle            TYPE REF TO i_oi_spreadsheet,
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a method of w_docuemnt&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      CALL METHOD w_document-&amp;gt;get_spreadsheet_interface
        IMPORTING
          sheet_interface = w_handle.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the method "get_spreadsheet_interface" there is a code where its written &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
sheet_interface = me.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont want to call "get_spreadsheet_interface" due to some problem, want to replicate the same action  as "sheet_interface = me."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jun 2008 13:59:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-10T13:59:05Z</dc:date>
    <item>
      <title>Copy object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001380#M956070</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 two objects declared as follows.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 w_document          TYPE REF TO i_oi_document_proxy,
  w_handle            TYPE REF TO i_oi_spreadsheet,
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a method of w_docuemnt&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      CALL METHOD w_document-&amp;gt;get_spreadsheet_interface
        IMPORTING
          sheet_interface = w_handle.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the method "get_spreadsheet_interface" there is a code where its written &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
sheet_interface = me.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont want to call "get_spreadsheet_interface" due to some problem, want to replicate the same action  as "sheet_interface = me."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 13:59:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001380#M956070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T13:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Copy object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001381#M956071</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 don't know these classes, but if the assignment &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sheet_interface = me&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.is taking place within method of i_oi_document_proxy i would simply try &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;w_handle = w_document.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mark-André&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 15:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001381#M956071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T15:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Copy object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001382#M956072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Swastik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u send the implementation part of the &lt;STRONG&gt;i_oi_document_proxy&lt;/STRONG&gt; and  &lt;STRONG&gt;i_oi_spreadsheet&lt;/STRONG&gt; coz i think u have to do some changes in  i_oi_document_proxy or  i_oi_spreadsheet ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Preetesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 12:04:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copy-object/m-p/4001382#M956072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T12:04:57Z</dc:date>
    </item>
  </channel>
</rss>

