2010 May 18 9:44 AM
Hi All,
I have a class which has 5 methods and around 15 attributes.
DATA: lr_document TYPE REF TO zcl_ps_pricing_document,
" Retrieve the Document Object
lr_document = gr_runtime_context->get_document( ).
in this example, lr_document is refferencing to class zcl_ps_pricing_document.
Now Can I export and Import lr_document to memory IDs?
Regards,
Selva M
2010 May 19 5:58 AM
Hello friend,
please refer to statement in ABAP on line help if you want to export a reference object to ABAP memory.
To export objects, which are referenced by reference variables, use the statement CALL TRANSFORMATION to serialize and export these objects if the class of these objects implements the interface IF_SERIALIZABLE_OBJECT.
Best Regards,
Jerry
2010 May 19 5:58 AM
Hello friend,
please refer to statement in ABAP on line help if you want to export a reference object to ABAP memory.
To export objects, which are referenced by reference variables, use the statement CALL TRANSFORMATION to serialize and export these objects if the class of these objects implements the interface IF_SERIALIZABLE_OBJECT.
Best Regards,
Jerry