To write a valid SOAP XML request for the Workday RaaS connector, you need to ensure that your XML structure is correct and that you are including the necessary elements and namespaces. Based on the context provided, here’s a refined version of your SOAP request:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:rpt="http://www.workday.com/report">
<soapenv:Body>
<rpt:Execute_Report>
<rpt:Report_Name>Your_Report_Name_Here</rpt:Report_Name>
<rpt:Report_Instance_Name>Your_Report_Instance_Name_Here</rpt:Report_Instance_Name>
<!-- Add any additional parameters required by your report here -->
</rpt:Execute_Report>
</soapenv:Body>
</soapenv:Envelope>
Make sure to replace Your_Report_Name_Here and Your_Report_Instance_Name_Here with the actual names of your report and instance. If your report requires any specific input parameters, you should include them within the <rpt:Execute_Report> tags as well.
If you continue to receive errors, double-check that the report name and instance name match exactly what is configured in Workday, and ensure that you have the necessary permissions to execute the report.
References: