Hi,
I set up an integration process in PI 7.3 where I receive data by jdbc, do some web service calls and send data back by jdbc receiver.
This is working so far. For test purposes, because I didn't want to consume all test data in the database at once, I made a
select top 1 * from table where status = '4'.
With this select I got only one message and evrything worked fine.
Now I removed the "top 1" clause and my message inbound contains multiple rows now. I start my process with this as receive step.
In the message mapping I changed the occurence of the target message to unbounded because I have to create 1 target message for every row of the database.
What do I have to do in the integration process to process every target message seperately?
Thanks and Regards
/Michael