If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

can hide UI link?

Started by Eag. E, 11 Mar 2016 04:24:14 AM

Previous topic - Next topic

Eag. E

Hi

When running a big report (small as well), we will see this page,
is that possible to hide "Select a delivery method" link ?

It is in C10.2.1

Thanks


Suresh Reddy

Hi

Please find the information below link:

http://www-01.ibm.com/support/docview.wss?uid=swg21338810

Please make sure to take back of  system.xml  before modifying.

-Suresh.

Eag. E

Hi Suresh,

I checked the link, in the directory and the portal_en.xml does not contain the link "Select a delivery method".
By the way, is that possible to hide this page?

Thanks

Quote from: Suresh Reddy on 14 Mar 2016 02:02:42 AM
Hi

Please find the information below link:

http://www-01.ibm.com/support/docview.wss?uid=swg21338810

Please make sure to take back of  system.xml  before modifying.

-Suresh.

Suresh Reddy

Hi Eag,

I don't have sandbox to test the previous post , due to that i have provided possible options, sorry for that. Please try below steps and let me know if it worked for you.

following files need to be modified:
..\webcontent\rv\res\viewer_en.js and ..\webcontent\rv\viewer.core.base.js. Find the following lines:
RV_RES.RV_BUSY_OPTIONS_SELECTED = "Instead of waiting, you can set it to run in the background with one of the following delivery options:";
RV_RES.RV_BUSY_OPTIONS_UNSELECTED = "Instead of waiting, you can select a delivery method to run the report in the background.";
RV_RES.RV_BUSY_OPTIONS_LINK = "Select a delivery method.";

And modify to the following:
RV_RES.RV_BUSY_OPTIONS_SELECTED ="";
RV_RES.RV_BUSY_OPTIONS_UNSELECTED ="";
RV_RES.RV_BUSY_OPTIONS_LINK ="";
=> please make sure to keep ""; instead of an empty value.

if your users are using different languages to view cognos portal, then you need modify all languages files.


Thanks

Eag. E

It works, thanks so much ;D

Quote from: Suresh Reddy on 15 Mar 2016 07:20:54 AM
Hi Eag,

I don't have sandbox to test the previous post , due to that i have provided possible options, sorry for that. Please try below steps and let me know if it worked for you.

following files need to be modified:
..\webcontent\rv\res\viewer_en.js and ..\webcontent\rv\viewer.core.base.js. Find the following lines:
RV_RES.RV_BUSY_OPTIONS_SELECTED = "Instead of waiting, you can set it to run in the background with one of the following delivery options:";
RV_RES.RV_BUSY_OPTIONS_UNSELECTED = "Instead of waiting, you can select a delivery method to run the report in the background.";
RV_RES.RV_BUSY_OPTIONS_LINK = "Select a delivery method.";

And modify to the following:
RV_RES.RV_BUSY_OPTIONS_SELECTED ="";
RV_RES.RV_BUSY_OPTIONS_UNSELECTED ="";
RV_RES.RV_BUSY_OPTIONS_LINK ="";
=> please make sure to keep ""; instead of an empty value.

if your users are using different languages to view cognos portal, then you need modify all languages files.


Thanks