|
|
|
|
Re: How to pass parameter in XML publisher [message #303887 is a reply to message #216821] |
Mon, 03 March 2008 02:31 |
daibatzu
Messages: 36 Registered: September 2007
|
Member |
|
|
I might be wrong about what you're asking.
Let's say that to run your report, you need one parameters, p_employee_name. If you want this to show up in your report this is what you will have to do.
First, create a text form field at the very beginning of your RTF file. After creating the text form field, right click to view the properties. Then click on "Add Help Text". In the field, enter <?param@begin:P_EMPLOYEE_NAME?>. The basic format is <?param@begin:PARAMETER_NAME?> where PARAMETER_NAME is the name of your parameter.
Then you will have to create another text form field, i.e which will actually display the parameter. So follow the same steps as above, but in the "Add Help Text" section, enter:
<?$P_EMPLOYEE_NAME?>
Please not the $ sign.
And that's it. Your parameter should show up.
|
|
|