cancel
Showing results for 
Search instead for 
Did you mean: 

How to suppress the target Node based on the source value

Former Member
0 Kudos

Hi all,

This is Idoc to file Interface,

I have field called Partner_Q from Idoc, If there is no value or if there is no Field means i should not populate the target segment

And if there is a value in that field means then only i have to populate the segment.

Regards

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member581827
Participant
0 Kudos

Hi,

You can try something like this

You can try some thing like this

Partner_Q--->Exists --->

AND---->createif-> Targernode.

Partner_Q-> Length>Equals->NOt--->

[0] constant

Regards,

Chandra

former_member200962
Active Contributor
0 Kudos

try this logic:

Partner_Q -----> Exists ----------------------------------------------------------------->
                                                                                And---->IfWithoutElse -----> Target
Partner_Q  ---------->                                                                                Then(Source)
                                          ----->equalS(TextFunction) ----> Not(Boolean)------>
Constant(Keep it blank) --->

Regards,

Abhishek.

Former Member
0 Kudos

partner_Q - - Not - -exists and partner_Q not equals ""> if

..false - -createif- -then

true - - create if - - else

basically check if the partner_Q exists.. in the source... If it does, send a true value to createif... which will create the target node.

else send a false to createif which will not create the target

Venkat.

Edited by: Venkat Anusuri on Jul 6, 2009 1:34 AM