cancel
Showing results for 
Search instead for 
Did you mean: 

Interfaces Processing Order

Former Member
0 Kudos

Hi All

I have 3 interfaces, interface1, interface2 and interface3. Each of these interfaces process data from MQ Series queues, Q1, Q2, Q3. The data from the sending system sends the data to the Q's at 12 midnight, at 2 am the interfaces are started and process the data in the following orders, interface1 runs and processes all data from Q1, on completion interface2 runs and processes all data from Q2 etc. The order is important. This interface I have built in SAPBC and works. I now want to build in XI, there does not seem to be an obvious way to maintain this order, any suggestions ?.

Thanks

Damien

Accepted Solutions (0)

Answers (1)

Answers (1)

prateek
Active Contributor
0 Kudos

Choose EOIO at sender side QOS.

For this, u ll have to provide the following

1)Queue ID

2)Processing J2EE Cluster Server (ClusterID)

Regards,

Prateek

Former Member
0 Kudos

Hi,

You can implement Queue prioritization also, if you want any messages to be processed immediately without waiting. Since these are different interfaces, you can assign the different priorities based on the sequence.

Please check the link for step by step procedure:

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/59e837d3-0201-0010-c096-dc186973...

Reward points if you feel needful.

Thanks,

Ramesh

Former Member
0 Kudos

Hi

Thanks for the replies. Give that the process should start at 2am. At this time:

Q1 depth = 100 JMS messages for interface 1.

Q2 depth = 50 JMS messages for interface 2.

Q3 depth = 20 JMS messages for interface 3.

All 100 messages on Q1 must be processed before the 50 on Q2 are processed before the 20 on Q3 are processed. When I refer to Q1, Q2, Q3 I mean IBM MQ Series queues. Ramesh, Can Q prioritisation ensure that they are processed in order ? Prateek, I am not sure if I understand your answer, can u explaina bit more please ?

Thanks

Damien