cancel
Showing results for 
Search instead for 
Did you mean: 

Checking Multiple condition in Mapping

Former Member
0 Kudos

Hi ,

I need to check multiple OR condition in Message mapping should i need to write an U.D.F.

For example:I has a field

MATNR where the possible values are WE,WB,AR

I need to check the condition Using OR condition

MATNR

EQUALS

WE

MATNR EQUALS

WB

MATNR EQUALS

BB

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

use boolean function OR & equal...

MATNR      
                  ------- equals -------
CONST(WE)                         |
                                            OR-----------------------
MATNR                                  |                         |
                 ------- equals ----------                          OR -----------Output?
CONST(WB)                       MATNR                   |
                                                   ----- equals -----------
                                        CONST(BB)

Edited by: Anand on Nov 29, 2008 3:04 PM

Edited by: Anand on Nov 29, 2008 3:06 PM

Answers (2)

Answers (2)

dharamveer_gaur2
Active Contributor
0 Kudos

Hi

No need to write any UDF, Just use Combination of booleand function OR and Equals

SudhirT
Active Contributor
0 Kudos

Hi,

as this will be very simple in graphical mapping, no need to use UDF.

Use boolean OR function.

Thanks.

Edited by: Sudhir Tiwari on Nov 29, 2008 2:51 PM