How can I get this all values between cbc:Note element ?
First I have used read text file activity to read xml file and then deserialize XML activity.
I have already added cbc namespace as “urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2”
use deserialize xml and paste the entire xml in it. remember, you need to replace all the double quotes with single quotes in the xml
Use get xml nodes activity to get all the nodes with in the xml and loop through the output as in the screenshot. xmldoc is the output of deserialize xml and xmlNodes is the output of get xml nodes activity. LocalName will give you all the child element names and we are getting the value of Note tag here…