cancel
Showing results for 
Search instead for 
Did you mean: 

mapping

Former Member
0 Kudos

hi,

i want to split the message and send it to two different receivers.but i dont want to use bpm because of some performnce isuues.

how to do this with out using bpm?

Accepted Solutions (1)

Accepted Solutions (1)

former_member189441
Active Participant
0 Kudos

hey

its possible to do message split(1:N) without BPM,but the condition is that the adapters must run on java stack not on ABAP stack,hence you can't do it for IDOC or HTTP or proxy.

/people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

for message merging without BPM,its still not possible,you need to use BPM

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

Yes, You can do this with out BPM by using 1:N Mapping for this refer following link.

/people/narendra.jain/blog/2005/12/30/various-multi-mappings-and-optimizing-their-implementation-in-integration-processes-bpm-in-xi

I did this type of scenario by Using BPM. i didn't face any performance issue. But i split RFC . You can splt Idoc by using BPM.

Regards,

Rohit.

Reward points if helpful.

former_member189441
Active Participant
0 Kudos

hi

its not possile in the case of those adpters whic reside in the ABAP stack.

GabrielSagaya
Active Contributor
0 Kudos

Hi,

This scenario you are trying can be done using CONDITIONAL RECEIVER DETERMINATION and RB SPLIT, where you can basically have one sender and two receivers.

To do this without using a BPM.

1. Create your mapping program that will map the information from the source file

into the destination idoc. This has to be a 1:N split. Just make sure that the destination message type and message interface are are of occurrence N.

2. Also, you will have 2 destination interfaces and 2 interface mapping, one for the IDOC and one for the mail.

Now, there are a few essential steps in your configuration,

1. In the receiver determination, specify the 2 receiver systems, one for your IDOC and the other for your MAIL.

2. Now, you will have a condition window. Just type the condition on the basis of which the receiver has to be determined for the mail and the idoc business system. Just remember that the condition can be specified only for the source message.

3. In the Interface Determination, you have an option called RB CLASSIC and RB SPLIT. To do a 1:N split, you will have to do a RB_SPLIT.

/people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

Former Member
0 Kudos

what abt idoc adapters