Re: What OutputConnectionType should I use for custom functoid returning bool?

Home Page Forums BizTalk 2004 – BizTalk 2010 What OutputConnectionType should I use for custom functoid returning bool? Re: What OutputConnectionType should I use for custom functoid returning bool?

#17156

I just tested string concat with "true" and & (anded) them together, then value mapped a string based on the result.  "true" & "true" = true.

Also, I used an equal (=) with a concat of "true" = "true" and anded that result from the "=" and the other "true".   true & "true" = true.

Then I changed one of the concats to "false"…   true & "false" = false   ..and..    false & "true" = false.

Now I need to modify the custom functoid and test it in the AM.

Thanks for the help.