add date parameter when integration with report
Content
i created a report and i can call a report but when i add a date parameter to report and try to call this parameter no data retrieve
i use a plsql program unit and i call it using soap
<ns2:parameterNameValues>
<ns2:item>
<ns2:name>P_START_DATE</ns2:name>
<ns2:values>
<ns2:item>'||P_START_DATE||'</ns2:item>
</ns2:values>
</ns2:item>
</ns2:parameterNameValues>
P_START_DATE --> is aprameter in procedure
what is the solution ?
0