cancel
Showing results for 
Search instead for 
Did you mean: 

Mapping found difficult:

former_member185856
Participant
0 Kudos

Hi,

I have found difficult to map the following condition:

Source: Target:

Productname -


> ItemName

Here I wanna map productname with Itemname and the condition is when the Productname is "TV" then it has to display in Target or it should be taken as null value.

pls let me know the answers....any one has..

Thanks in advance.

Sunil

sapsuni@gmail.com

Accepted Solutions (1)

Accepted Solutions (1)

former_member185856
Participant
0 Kudos

Hi All,

SDN and SDN People are great....we need to help like this....replying to a querry makes us more powerful, so keep answering ..and help others who are in trouble..

Thanking you,

Sunil K Shetty

XI Consultant

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi;

Just a question here

By null do you want a blank to be inserted in teh node or the node should not be created??

If you have to insert null then use this

Productname

equals -


IF Then(ProductName) Else("")

Constant(TV)

Mudit

Award points if it helps

Former Member
0 Kudos

Hi;

Is this what your requirement was??

Mudit

Former Member
0 Kudos

Hi Sunil,

U can use CreateIf node function

product name\ equalS)-->CreatIf--->ItemName

constant(TV)--/

Product and Constant are the Input to equalS function(Text Function)

This will surely solve ur problem

Regards,

Ashwin M

Reward if helpful

former_member185856
Participant
0 Kudos

Hi Aswin,

I used your solution it worked on...and I solved my issue, I used,

EqualS function and assigned a constant value as " TV" and also used "If" Function then I asigned constant value "TV" to then ; and another constant value saying "No value" to else and the other side of the function is assigned to "Itemname" field.

I ll provide you the points for your kind help....

If you have some docs on Mapping pls forward me...and if it consists of all the functions used in XI graphical mapping that will be more helpful....pls ok...

Thns a lot!!!

Sunil K Shetty

sapsuni@gmail.com

Former Member
0 Kudos

Hi Sunil,

you can achieve this using IF function as follows:

IF -> ProductName = TV (Constant) -> THEN ItemName -> ELSE -> Blank (Constant).

regards