cancel
Showing results for 
Search instead for 
Did you mean: 

How to change Fiori Outbox App Header in Fiori Launchpad

SandipAgarwalla
Active Contributor
0 Kudos

Hello

Recently we created an Outbox Tile, based on the standard Fiori My Inbox Tile. Everything works fine, however when we launch the Outbox App, the Shell Merged header still shows 'My Inbox'. Is there a way to change the Title?

im1.jpg im2.jpg

Thanks

Sandip

Accepted Solutions (0)

Answers (5)

Answers (5)

Hi Sandip,

Not sure if you have already found a solution for your problem, but I faced a similar issue recently and I resolved it using the following code,

inside the extended controller,

First I checked if the app is being launched from Outbox or Inbox Tile by checking the launch URL parameter 'outbox',

var oHashChanger = new sap.ui.core.routing.HashChanger();

var sHash = oHashChanger.getHash();

var isOutbox = (sHash.indexOf("outbox=true")!== -1)? true:false;

Then I updated the shell title in the same controller, using the following code.

if (isOutbox === true)

{

sap.ui.getCore().byId("shellAppTitle").setText("My Outbox");

}

If you don't prefer using the 'sap.ui.getCore()' then you can also achieve it by the ShellUIService.

You can find the process to use it in the following link,

https://sapui5.hana.ondemand.com/#/api/sap.ushell.ui5service.ShellUIService/overview

I hope this reply would help you with your issue.

Regards,

Soumalya

nabheetscn
Active Contributor

Dear Sandip

Normally the title is in component.js file, you can create an extension project for the app and modify it as per the need.

Thanks

Nabheet

SandipAgarwalla
Active Contributor
0 Kudos

Hi

Yes, this can be changed either by modifying the i18N or using extended control in WebIDE. I was looking if SAP has provided any solution, and found they have provided a note for this correction.

https://launchpad.support.sap.com/#/notes/2707404

Regards

Sandip

former_member188554
Participant
0 Kudos

Hello Sandip,

I am also facing the same issue. The count in Outbox tile is coming is as expected but the records are coming as same as My Inbox records. How the correct records will come?

Thanks

Deborshi

SandipAgarwalla
Active Contributor
0 Kudos

Hello Jorge

Thanks for your reply.

Since we just copied the Inbox Tile and changed the Service URL, hence it still shows My Inbox as App Title. The tile configuration does not have App Title, I think.

So wanted to know if there is any other way to change the App Title?

Regards

Sandip

jorge_cabanas
Participant
0 Kudos

Hi Sandip,

Please check the tile configuration for outbox, it could be something pointing to the wrong title.
If not, attach images with the configuration.

Kind regards,
Jorge