Skip to content

Instantly share code, notes, and snippets.

@raj-arun
Created August 23, 2020 17:44
Show Gist options
  • Select an option

  • Save raj-arun/83ccdf80762f9ed91fb545a92c6db19d to your computer and use it in GitHub Desktop.

Select an option

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
<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