Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Reading destination element inside scripting functoid › Re: Reading destination element inside scripting functoid
September 2, 2009 at 6:04 AM
#23187
The mapper does not allow access to the destination nodes. This is a restriction of Xslt, not a Biztalk specific restriction.
I am not sure I follow your logic
else If X1=(‘RM’ && !(X1==”KT” || X1==”MT”))
you appear to anding a boolean with a string, should this read
if ((X1 == ‘RM) && !(X1==”KT” || X1==”MT”))