Extract data from xml to a datatable

Thank you ppr for this.

Also , in the below xml file , I want to change the value of wd:Add_Only=“true” to “false”
How do I achieve that ?

<?xml version="1.0" encoding="UTF-8"?>

<env:Envelope
xmlns:env=“http://schemas.xmlsoap.org/soap/envelope/
xmlns:xsd=“w7.org - contact with domain owner | Epik.com”>

<env:Body>
    <wd:Submit_Supplier_Invoice_Request
        xmlns:wd="urn:com.workday/wfwf"
        wd:Add_Only="true"
        wd:version="v213.0">
		
        <wd:Supplier_Invoice_Reference>
        <wd:ID wd:type="Supplier_Invoice_Reference_ID">SUPPLIER_INVOICE-23472</wd:ID>
        </wd:Supplier_Invoice_Reference>
    </env:Body>

</env:Envelope>

Regards,
Gokul