cancel
Showing results for 
Search instead for 
Did you mean: 

ParForEach / ForEach

Former Member
0 Kudos

Hi All

I have searched the web, but could not fine any blog about ParForEach / ForEach

does any one knows of any step by step scenario for ParForEach / ForEach

thanks.

Accepted Solutions (0)

Answers (3)

Answers (3)

ParvathyS_SAP
Product and Topic Expert
Product and Topic Expert
0 Kudos

ParForEach : Multiple messages are sent to individual receivers simultaneously.

Example:BpmPatternMulticastParallel

ForEach : Multiple messages are sent to individual receivers one after the other.

Example:BpmPatternMulticastSequential

Go through this link..

http://help.sap.com/saphelpnw04/helpdata/en/11/13283fd0ca8443e10000000a114084/frameset.htm_

to understand still more clear on Multicast, go through the link:

Regards,

Parvathy

Former Member
0 Kudos

Hi All

I know what ParForEach / ForEach means , but I need a step by step example , how it works in real.

it seems that no one has written this kind of scenario.

thanks.

Former Member
0 Kudos

HI,

If you will be expecting the screen-shots and the blog for step by step processing. Then I doubt about it.

You can refer the example I had mentioned in my previous post, that will give you the idea about real time scenario and accordingly you can design the scenario.

Let us know if you have any specific problem with it.

thanks

Swarup

Former Member
0 Kudos

Hi,

Check this thread for more clarification:

Thanks,

Boopathi

Former Member
0 Kudos

Hi

I found this one , it contains also other good stuf.

http://www.riyaz.net/blog/index.php/2008/04/23/xipi-1n-multi-mapping-using-bpm/

Thanks.

Former Member
0 Kudos

Hi,

Foreach -> Multiple messages are sent to individual receivers.

ParForEach-> Multiple messages are sent to individual receivers.

Check this link i think it may be useful.

http://help.sap.com/saphelp_nw04/helpdata/en/11/13283fd0ca8443e10000000a114084/frameset.htm

Regards,

Sharanya.

Former Member
0 Kudos

Hi

Refer

Diff between ForEach & ParForEach blocks in BPM

The exact difference is static and dynamic. I mean when you know the exact number of incoming messages where by you want do some process on each message then you can use Fork else you can use Block with mode ParForEach

In case of parforeeach, input messages ( of one message type) are processed simultaneously. Block is complete when end condition is satisfied.

e.g. If messages ( of single structure) to be sent to diffrerent receivers and get response.

Whereas in case of fork, each branch is processed simultaneously and here different interfaces with different message types can be configured.

e.g Messages (of different structures) to be received. If 3 message types then 3 branches to be configured.

For more details see the link

http://help.sap.com/saphelp_nw04/helpdata/en/ce/bb2c421f3fda2ce10000000a1550b0/frameset.htm

Fork

You use a fork when you want to continue a process in branches that are independent of each other.

Please see the following link.

http://help.sap.com/saphelp_nw04/helpdata/en/ce/bb2c421f3fda2ce10000000a1550b0/frameset.htm

Thanks

swarup

Edited by: Swarup Sawant on Jul 23, 2008 8:53 AM