‎2008 Jun 10 2:59 PM
Hi,
I have two objects declared as follows.
w_document TYPE REF TO i_oi_document_proxy,
w_handle TYPE REF TO i_oi_spreadsheet,
I am calling a method of w_docuemnt
CALL METHOD w_document->get_spreadsheet_interface
IMPORTING
sheet_interface = w_handle.
Inside the method "get_spreadsheet_interface" there is a code where its written
sheet_interface = me.
I dont want to call "get_spreadsheet_interface" due to some problem, want to replicate the same action as "sheet_interface = me."
Please let me know how to do this.
‎2008 Jun 10 4:04 PM
Hi,
i don't know these classes, but if the assignment
sheet_interface = me.is taking place within method of i_oi_document_proxy i would simply try
w_handle = w_document.Hope this works!
Regards
Mark-André
‎2008 Jun 11 1:04 PM
hi Swastik,
can u send the implementation part of the i_oi_document_proxy and i_oi_spreadsheet coz i think u have to do some changes in i_oi_document_proxy or i_oi_spreadsheet ...
Regards
Preetesh