Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Passing parameters to BI Publisher report via a web service

afret1Jul 29 2009 — edited Jul 30 2009
I have got the application interface to BI Publisher working through the white paper "Integrating Oracle Application Express with BI Publisher". The last bit of trouble I'm having is passing a parameter to my BI Publisher report. I believe this is done in the "download" process where the soap envelope is created, but I'm not sure.

The code in the white paper is:

<parameterNameValues xsi:type="pub:ArrayOfParamNameValue" soapenc:arrayType="pub:ParamNameValue[]"/>

If I have a parameter of "HEADER_ID" with a value of say "5", how do I code this? I have tried the following, but it doesn't work:

<parameterNameValues >
<item>
<name>HEADER_ID</name>
<multiValuesAllowed>false</multiValuesAllowed>
<values>
<item>5</item>
</values>
</item>

Alex.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 27 2009
Added on Jul 29 2009
2 comments
2,002 views