Biztalk Issue:How to extract perticular value from xml schem
Biztalk Issue:How to extract perticular value from xml schema and store into variable in BizTalk Orchestration shape?
Answers (1)
0
Hi...
Just try it out like mentioned in below code snippet
ReferenceNum=xpath(m_XML,"/*[local-name()='Deposit' and namespace-uri()='http://App.BizTalk.Schemas.App.Schemas.mPaymentSchema']/*[local-name()='Payments' and namespace-uri()='http://App.BizTalk.Schemas.App.Schemas.mPaymentSchema']/*[local-name()='Payment' and namespace-uri()='http://App.BizTalk.Schemas.App.Schemas.mPaymentSchema']/@*[local-name()='Reference_Number' and namespace-uri()='']");
If found useful please mark as Accepted answer.
Accepted