You can completely disable Personas in GUIs other than the HTMLgui - details here: https://wiki.scn.sap.com/wiki/display/Img/Deactivating+SAP+Screen+Personas. This will obviously disable it for *all* flavours and transactions.
If you want to do this just for this flavour, leaving other flavours working in the Windows GUI, then you need an onLoad script in your flavour that checks session.info.guiType and switches to the original flavour in Windows and Java guis, like this:
if(session.info.guiType != 1) { session.utils.changeFlavor(""); // Original Screen }
As for adding tabs, that's not possible. You can fake it by adding script buttons that look like tabs, with scripts that switch flavour to change the content below. A little messy to implement but it works reasonably well for the end user.
Steve.
Add comment