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

Parallel Processing -Max Dialog WP run time

Former Member
0 Likes
637

I think I already know the answer to this, but I wanted to confirm.

I've got a program that generates a lot of data to be deleted/inserted. To do all the deletions/insertion I call a function module using "START NEW TASK". The dialog work process, that this step uses, takes a long time to run (due to many insertion/deletion). Does anyone know if the dialog work process would still have to comply with the max work process run time set on the application server (app server parameter rdisp/max_wprun_time)?

Thanks.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
457

I think it would as it is running in a dialog task, however if you pass it of to a background process, it should run with no time limitation. Try using the IN BACKGROUND TASK.

Please remember to award points for helpful answers.

Regards,

Rich Heilman

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
458

I think it would as it is running in a dialog task, however if you pass it of to a background process, it should run with no time limitation. Try using the IN BACKGROUND TASK.

Please remember to award points for helpful answers.

Regards,

Rich Heilman

Read only

0 Likes
457

That did the trick! Thanks!!

Points rewarded.