‎2010 Feb 15 6:39 AM
Hi ,
In my program i am using multithreading logic to improve the performance but i am getting the short dump saying that STORAGE_PARAMETERS_WRONG_SET and CALL_FUNCTION_REMOTE_ERROR. I am passing large amount data internal tables
to the Multithreading Function module.
Please tell me how we will avoide this short dump or How we will increse the performance of the report without using
multithreading.
Thanks,
Kishore.
‎2010 Feb 15 8:38 AM
Hi,
You can use the export/import to/from shared memory, to avoid passing the data as parameters. Save your data with a unique id for each theard and pass the id as parameter to the function, read this inside the function, and delete the data at the end of function...
Regards,
‎2010 Feb 15 9:47 AM
If the internal table carries more than 2 lakh entries, then this will not work.
Please let us know, if you have solution for this.
Edited by: arunchandra c p on Feb 15, 2010 10:49 AM
‎2010 Feb 15 11:55 AM
Hi,
>
> Hi ,
>
> In my program i am using multithreading logic to improve the performance but i am getting the short dump saying that STORAGE_PARAMETERS_WRONG_SET and CALL_FUNCTION_REMOTE_ERROR. I am passing large amount data internal tables
> to the Multithreading Function module....
e.g. by sending smaller chunks of data.
instead of n times m entries/rows send 2*n times m/2 entries/rows....
Kind regards,
Hermann