‎2008 Jun 10 3:01 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 3:18 PM
i_oi_document_proxy is implemented by which class?
Solution can be create subclass of that implementing class and implement your new method.
You can then type-cast parent instance to child instance and call your method.
G@urav.
‎2008 Jun 10 3:18 PM
i_oi_document_proxy is implemented by which class?
Solution can be create subclass of that implementing class and implement your new method.
You can then type-cast parent instance to child instance and call your method.
G@urav.
‎2008 Aug 22 8:46 AM