Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

When a report is viewed in BOExir2 it shows navigation tree 1

Status
Not open for further replies.

eo

MIS
Apr 3, 2003
809
When a report is viewed in BOExir2 it shows navigation tree. How do I turn that default off. I would rather have the viewer page be taken up by the report, and for the user to select the hide/ show navigation tree if required.

EO
Hertfordshire, England
 
You can either set the Report Option "Create Group Tree" to off in each report inside of Crystal Reports XI or you can modify the Web Component adaptor code like this:(This is an excerpt from the Business Objects XI Release 2 Deployment manual and is called xir2_bip_deploy_en.pdf)

To configure the Java WCA you edit the web.xml file associated with the
WCA:
• Windows: C:\Program Files\Business
Objects\BusinessObjects Enterprise
11.5\java\applications directory
• UNIX: WEB-INF subdirectory of the webcompadapter.war archive file
stored in the bobje_root/enterprise115/java/applications
directory
For example, the context parameter that controls whether a group tree will be
generated looks like this:
<context-param>
<param-name>viewrpt.groupTreeGenerate</param-name>
<param-value>true</param-value>
<desctiption>”true” or “false” value determining whether
a group tree will be generated.</description>
</context-param>
To change the value of a context parameter, edit the value between the
<param-value> </param-value> tags.
 
I could not find the web.xml specified, but managed to follow the more manual route of Report Options.

Thanks!

EO
Hertfordshire, England
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top