2010 Oct 01 7:13 AM
Hi,
Can we store multiple instances of Shared Objects in memory and read the desired instance.
e.g
If i execute the below program twice then also it will create only a single instance in the memory.
Can we create a memory object with a key and then read the instance with the object with key
data: handle type ref to ZCL_SHM_AREA_XX,
root type ref to ZCL_SHM_AREA_ROOT_XX.
handle = ZCL_SHM_AREA_XX=>attach_for_write( ).
create object root AREA HANDLE handle.
root->FORM = 'Termination'.
handle->set_root( root ).
handle->detach_commit( ).
2010 Oct 03 1:51 AM