cancel
Showing results for 
Search instead for 
Did you mean: 

Personas 3.0 : Launch Tcode in SAP GUI from Personas Flavor

0 Kudos

Hi Experts,

We have a requirement to launch back-end SAP GUI screen for a particular T-code on a script execution.

Please help me whether this is feasible using Personas 3.0 SP3.

Thanks in advance,

Pallabi

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

I believe the answer is, no you can't. JavaScript, in general, cannot execute local applications. You may be able to do something with ActiveX, if you don't mind being restricted to only using Internet Explorer, and perhaps you could get a Personas script to write something to embed the ActiveX control. This is beyond my expertise, though...

Steve.

0 Kudos

Hi Steve

The requirement is to open the Transaction using SAP GUI for Windows, not in web gui.

Former Member
0 Kudos

It sounds like you want a Personas script to launch another transaction using its original standard screen? If that's all you need, then this should do it:

session.startTransaction("SU01");
session.utils.changeFlavor("");

If that's not what you are looking for, please explain your requirement in more detail.

Steve.