cancel
Showing results for 
Search instead for 
Did you mean: 

Transaction button not working

former_member211867
Discoverer
0 Kudos

Hi all,

I am using Screen personas 3.0 i want to create a transaction button with code '/OSMEN'(/O  for opening in new session) but it is not allowing me to enter '/O' IN TCODE of button definition so how can i use '/O' in tcode ???
and can we have any other way to open a transaction in new session with transaction button??

Help me out in this case!

Thanks & Regards,

Nishanth .B

Accepted Solutions (0)

Answers (1)

Answers (1)

tamas_hoznek
Product and Topic Expert
Product and Topic Expert
0 Kudos

Not with a transaction button, but if you really want to have a new session, you could use a script button with the following script:

var url = location.protocol + '//' + location.host + '/sap/bc/personas/?sap-ie=edge&~transaction=tcode';

session.utils.openUrl(url);