1
Answer

Biztalk Issue:How to extract perticular value from xml schem

Photo of JAYDIP PATIL

JAYDIP PATIL

8y
640
1
Biztalk Issue:How to extract perticular value from xml schema and store into variable in BizTalk Orchestration shape?

Answers (1)

0
Photo of Sandip G. Patil
570 2k 244.8k 8y
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