cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Process Integration (SAP PI PO) Local rule routing condition

revathi3
Explorer
0 Kudos

Hello ,  

In integrated configuration , i have to add a condition like when zregiogroup = 'eng' or 'mech' and werks = 'p020' or 'p025' or 'p089' or... Then that needs to passed to receiver. Please find the attachment for reference. I'm not able to find the solution. Please help me!!

 

revathi3_0-1715363825127.png

 

 

View Entire Topic
helmut_skolaut3
Active Participant
0 Kudos

You can combine AND with OR - but in the way SAP has foreseen it, it will not help. You can setup like 
(a = 1 AND b = 2) OR c = 3
But there is no way to set up like:
(a = 1 OR a = 2) AND ( b = 3 OR b = 4 )

You can either combine it like:
/something/a['1' or '2']/something/b[ '3' or '4']  EX

Or you are creating an extended receiver determination where you can use XSLT (or Graphical ...). 

Hope that helps? 

BR Helmut