cancel
Showing results for 
Search instead for 
Did you mean: 

Personas - different default flavors for SAP GUI and Web GUI

Former Member
0 Kudos

Is it possible to set different default flavors for SAP GUI for Windows and SAP GUI for HTML in the same transaction?

E.g. I created my flavor for SAP GUI for HTML as default flavor but for SAP GUI for Windows I'd like to use the original screen as default.

I'd like to avoid to deactivate Personas for SAP GUI for Windows as general setting because other flavors should be available there.

View Entire Topic
Former Member
0 Kudos

You can, in a script, check which GUI version is running using session.info.guiType, and then switch flavours accordingly. If you put this in the onLoad script for your flavour it will switch to the original screen if not running in the HTMLgui:

if(session.info.guiType != 1) {
     session.utils.changeFlavor(""); // Switch to original Screen
}

Steve.

Former Member
0 Kudos

Thanks for the answer! In the meantime I used the flavor in the direct-URL I provided my users (via Fiori Launchpad) so the original screen is always the default.