cancel
Showing results for 
Search instead for 
Did you mean: 

Change the HOME text in Fiori Launchpad in SCP Portal Services

former_member514516
Participant
0 Kudos

How do I change the text 'HOME' in the Fiori Launchpad? I would like to indicate there if the Launchpad is DEV, QAS, PRD.

I am using a Fiori Launchpad created using Portal services of SAP Cloud Platform.

Here is what I want to change.

Accepted Solutions (1)

Accepted Solutions (1)

saurabh_vakil
Active Contributor

You can develop a launchpad shell plugin and in the Component.js file include the below code to show any custom text on the launchpad header.

oRenderer.setHeaderTitle("openSAP 2018");

former_member514516
Participant
0 Kudos

Hi Saurabh,

I inserted this code into my Launchpad plugin's Component.js but still did not work.

Did I do something incorrectly? I was unsure how to get the renderer. Thanks.

saurabh_vakil
Active Contributor
0 Kudos

You can try the below code.

var rendererExt = sap.ushell.renderers.fiori2.RendererExtensions;
rendererExt.setHeaderTitle("openSAP 2018");
former_member514516
Participant
0 Kudos

I also tried this one but also did not work.

maheshpalavalli
Active Contributor
0 Kudos

michaeljamesdugay can you also check if the launchpad plugin is loaded in the sources..? If loaded, put a breakpoint there and check it?

Answers (1)

Answers (1)

former_member514516
Participant
0 Kudos

@ saurabh.vakil I have solved it using below code in the plugin's Component.js.