Hi All,
I want to remove following node from XML, how can I do this please?
Want to remove this part
<DocuRef class = "entity">
<Notes>test notes</Notes>
</DocuRef>
Full XML
<?xml version="1.0" encoding="utf-8"?>
<SalesOrder xmlns = "schemas.microsoft.com/.../SalesOrder">
<SalesTable class = "entity">
<DocuRef class = "entity">
<Notes>test notes</Notes>
</DocuRef>
</SalesTable>
</SalesOrder>
Result should be
<?xml version="1.0" encoding="utf-8"?>
<SalesOrder xmlns = "schemas.microsoft.com/.../SalesOrder">
<SalesTable class = "entity">
</SalesTable>
</SalesOrder>
*This post is locked for comments
I have the same question (0)