Skip to content

Instantly share code, notes, and snippets.

@raj-arun
Last active July 18, 2019 15:54
Show Gist options
  • Save raj-arun/cb3c06e24d36a726c733f56da2901f44 to your computer and use it in GitHub Desktop.
Save raj-arun/cb3c06e24d36a726c733f56da2901f44 to your computer and use it in GitHub Desktop.
SOAP Payload for BI Report
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:pub="http://xmlns.oracle.com/oxp/service/PublicReportService">
<soap:Header/>
<soap:Body>
<pub:runReport>
<pub:reportRequest>
<pub:parameterNameValues>
<pub:item>
<pub:name>P_VERSION_NAME</pub:name>
<pub:values>
<pub:item>ACCOUNT_V1</pub:item>
</pub:values>
</pub:item>
</pub:parameterNameValues>
<pub:reportAbsolutePath>/Custom/Integrations/EPM/Financials/Report/EPM Account Hierarchy Report.xdo</pub:reportAbsolutePath>
<pub:sizeOfDataChunkDownload>-1</pub:sizeOfDataChunkDownload>
</pub:reportRequest>
</pub:runReport>
</soap:Body>
</soap:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment