Created
August 23, 2020 17:05
-
-
Save raj-arun/70d995f567785b697058cd34c71ce01d to your computer and use it in GitHub Desktop.
XML Payload to invoke a BI Report with Single Parameter
This file contains 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: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