cancel
Showing results for 
Search instead for 
Did you mean: 

BPM waits longer than it should

Former Member
0 Kudos

Greetings

Im having a problem with a BPM.This BPM waits for two idocs, its configured to wait for the second idoc 1 minute, and It does, but when I transported it to the production server it takes 45 minutes.

do you know how come the 1 minute time out gets fired only 44 minutes later than it should?

thanks in advance for your help

any help would be appreciated

Accepted Solutions (1)

Accepted Solutions (1)

bhavesh_kantilal
Active Contributor
0 Kudos

Can you try a service market place search for some SAP notes on this issue? I think I have seen a few notes on the wait step "misbehaving" in XI.

Regards

Bhavesh

Answers (3)

Answers (3)

dharamveer_gaur2
Active Contributor
0 Kudos

hi jean this thread have same problem , it will help u.

//Wait step problem

Former Member
0 Kudos

yeah... EXACTLY the same

former_member183906
Active Contributor
0 Kudos

The wait step in BPM isn't accurate. You'd better build in a wait step (user defined function) in your mapping. Create a simple dummy mapping (message type A to message type A) for this purpose.

Pause for 10 seconds:

try {

Thread.currentThread().sleep(10000);

}

catch (InterruptedException ie) {

}

return (a);

Former Member
0 Kudos

thanks guys

I didnt knew that bpm time is not accurate

The proble was in part solved taking some load of the server, cleaning queues and stoping some bach jobs

the time went down to 3 minutes on the faster execution

Im gonna keep trying configuration to make it faster, if not Ill go with some redesigning of the BPM to make the change the way in wich the bmp waits the second idoc

thanks a lot

Former Member
0 Kudos

Hi,

in tcode SWU3 you can configure under Schedule Background Job for Missed Deadlines a time interval how often deadlines should be checked.

This could be the reason.

Regards

Patrick

bhavesh_kantilal
Active Contributor
0 Kudos

news to me this is great answer. Thanks!

Regards,

Bhavesh