cancel
Showing results for 
Search instead for 
Did you mean: 

Mapping

Former Member
0 Kudos

Hi Friends,

I need one mapping logic . Kindly guide me on the following :

Requrement :

There is field called First name.

When the First name is not Renu then i need to pass the phone number to target.

How to implement "not equal to " to function

Kindly guide me.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi renu,

Compare the First Name with constant Renu, use equalS for comparison.

Then use boolean 'not function and then ifWithoutElse to pass the result.

-Supriya.

Answers (3)

Answers (3)

Former Member
0 Kudos

> How to implement "not equal to " to function

Actually these are 2 functions "Not" & "Equals", where "Not" is an boolean function and "Equals" is Text function.

> When the First name is not Renu then i need to pass the phone number to target.

You can do your mapping without using not equals as well, but here is an example as per your requirement.

FirstName-------->| 
                  |----Equals-->Not--->If--->Then-->Target. 
Constant(Renu)--->|                              / 
                                                / 
                                PhoneNumber--->/

I would recommend you to go through these blogs, because the question you have asked is very basic..

/people/sravya.talanki2/blog/2005/08/16/message-mapping-simplified--part-i

/people/sravya.talanki2/blog/2005/12/08/message-mapping-simplified-150-part-ii

/people/stefan.grube/blog/2006/01/09/the-use-of-suppress-in-the-xi-30-graphical-mapping-tool

http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm

Former Member
0 Kudos

Hi Sarvesh,

I am implementing one complex multiple if else condition logic so i got lost in the logic

Now i able to fix the issue.

Thanks all of you friends for giving this idea.

Former Member
0 Kudos

Hi Renu,

Please check this mapping, You will get the excepted result

FirstName and Constant 'Renu' is map to equalsS(it is Text standard function) after it map to "ifThenElse" ( boolean function second to last)

If above condition satisfied it pass the value "Renu", If not satisfied you can pass the FirstName filed for next condition and value as the phone no field

FirstName---

FirstName and constant"Renu"---map--equalsS -----If thenElse---------mapto targetfield
 
                                                      PhoneNo

Thanks

Sateesh

vkaushik82
Active Participant
0 Kudos

try using if then else function in your mapping

for not equal use NOT function provided in graphical mapping

Edited by: Vikrant Kaushik on Sep 21, 2010 10:22 AM

Former Member
0 Kudos

I specficcally need to check for not equal to function due to some additional funcationality in the mapping

How to check "not equal to "

Former Member
0 Kudos

Hello Renu,

"equalS + NOT" is a combination for "not equal to"

-Rohit