I have value prompt and corresponding parameter P_salesID.
When I run the report, the prompt is displaying by defualt parameter P_salesID.
I want this to be changed to <select>.
How could I do this?
Thanks
In your prompt query, create a new data item and in the expression drag and drop Sales_ID
Use the new data item as the USE and DISPLAY value for the value prompt.
Change you prompt parameter from P_salesID to <select>
Gopinath,
is this working for 8.2? I tried but it's not.
anyway I used Javascript to do this task.
<script>
function init()
{
var form = document.forms["formWarpRequest"];
var listB = form._oLstChoicesP_salesID;
listB.options[0].text='<select>';
listBoxP_salesID.checkdata();
}
</script>
<body onload=init()>
Thanks