cancel
Showing results for 
Search instead for 
Did you mean: 

Condition Editor in Receiver Determination

Former Member
0 Kudos

Hello all,

I am trying to come out with a condition like the following in the condition editor

If ( (LNAME = XYZ or Name = ABC) AND (Company = SAP)

If you notice in the condition editor, the AND condition always get "bracketed" with the previous condition.

In this case as seen in the screenshot, it is


If ( (LNAME = XYZ) OR (Name = ABC AND (Company = SAP))

How can I move the BRACKET easily to manipulate the condition?

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184720
Active Contributor
0 Kudos

You can directly provide the customized xpath expression in editor.

Former Member
0 Kudos

Hello,

The problem seems rather straightforward.

Is there an easier way other than using the xpath expression?

former_member184720
Active Contributor
0 Kudos

>>>Is there an easier way other than using the xpath expression?

Both are xpath expressions itself right? It's just that you got limited options with the selection screen.

You can just write the xpath condition in editor and choose EX operator.

Otherwise you can split into two parts

LNAME =XYZ AND Company = SAP

OR

NAME = ABC AND Company = SAP