Created
August 23, 2020 17:44
-
-
Save raj-arun/83ccdf80762f9ed91fb545a92c6db19d to your computer and use it in GitHub Desktop.
XML Payload to invoke a BI Report with multiple parameters accepting multiple values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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_YEAR</pub:name> | |
| <pub:values> | |
| <pub:item>2019</pub:item> | |
| <pub:item>2020</pub:item> | |
| </pub:values> | |
| </pub:item> | |
| <pub:item> | |
| <pub:name>P_SET</pub:name> | |
| <pub:values> | |
| <pub:item>US Ledger Set</pub:item> | |
| </pub:values> | |
| </pub:item> | |
| </pub:parameterNameValues> | |
| <pub:reportAbsolutePath>/Custom/GL/GL Periods 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