Add or insert records to XML Repeating Sequence Group

Home Page Forums BizTalk 2004 – BizTalk 2010 Add or insert records to XML Repeating Sequence Group Add or insert records to XML Repeating Sequence Group

#13771

You can test a value in a schema three ways:
1) Promoted field: msgABC(namespace.fieldname)
2) Distinguished field: msgABC.fieldname
3) Use the Xpath function to query the value of the field – this is more complex, but sometimes handy:
strTempValue = xpath(msgABC,\”string(//*fieldname[1])\”).
The problem is that the namespace must often be added and the XPath can get very complex.