Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Multithreading Issue

Former Member
0 Likes
422

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.

3 REPLIES 3
Read only

Former Member
0 Likes
389

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,

Read only

0 Likes
389

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

Read only

HermannGahm
Product and Topic Expert
Product and Topic Expert
0 Likes
389

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