cancel
Showing results for 
Search instead for 
Did you mean: 

BPM split message problem

Former Member
0 Kudos

Hi all,

I have a problem in splitting messages inside BPM.

My requirements are:

1. Receive message (message with apprx. 700.000 records)

2. Split message to smaller messages (1 message should not contain more than 10.000 records. 70 messages should be created)

3. Send these message with a delay, one by one. (after the 1. message is sent the next should be sent 1 minute later until all are processed)

My question is how do I split the messages into 10.000 records without using java or abap mapping.

2. how do I send them synchronously in a loop? How should the structure be???

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

RKothari
Contributor
0 Kudos

Hi Chris,

You can use a transformation step wherein you will define a 1...n mapping. In the mapping create a logic(in UDF) to split the message after every 10,000 message --> Collapse message. This logic would be there in the root node.

Hope this helps.

Regards,

Rahul

Former Member
0 Kudos

Can you give a little more information about the UDF?

I am not familiar with the collapse logic. Thanks.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi guys,

Any ideas on this?