Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
URL parameter __title as a value in the report
egolan74
Hi,
I am sending the report parameters in the URL. I also send __title in order to have a title.
I want to use this parameter inside the report.
I have a Data object and tried several different things:
report.__title , params["__title"]
No seccess.
How can I get the value of configuration parameters?
Find more posts tagged with
Comments
JasonW
Try
reportContext.getHttpServletRequest().getParameter("__title");
Jason