cancel
Showing results for 
Search instead for 
Did you mean: 

Changing link in the browser

Former Member
0 Kudos

Hi,

I want to change the URL for the help link on the webpage.

I have found the program (BBPHELP) for the change but the URL i put in is not accepted and the same program is called again untill i put nothing in the URL field.

Does this program look up this URL in a table?

best regards

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

I found out that if you in the program BBPHELP if you put an enhancement at the bottom of the FORM status_1000 and change the variable FRONTEND_URL to the address you want, it will change the link.

REMEMBER to have HTTP://www at the start www only will not work.

Best regards

athavanraja
Active Contributor
0 Kudos
assumption: since you have mentioned BBPHELP, i assume you are talking about SRM
just move the mouse over the help link, what js function gets called for clicking the link? is it startKwHelpPortal() ?

what we have done:

service : BBPGLOBAL, 
in template : BBPFUNCTIONS_DEF  we added the following line
 `BBPNavigation(label=#HELP, jsFunction="openCustHelp()", tooltip=#LINK_HELP);   

in the same service MIME objects/scripts  folder open WPINTEGRATION.js  and add the openCustHelp js function definition.

function openCustHelp()
{
window.open ('http://mysite.domain.com/../....Help_popup.html', '_blank', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=550,left = 200,top = 100');
}
Former Member
0 Kudos

Hi,

Thank you for your answer.

We were hoping we could do this without changing templates.

Any body who have done this without changeing the templeates?

Best regards

Lisa M Simonsen