cancel
Showing results for 
Search instead for 
Did you mean: 

How to open a R/3 transaction code from SAP UI5

Former Member
0 Kudos

Hi All,

I want to open a t-code(ex: se16..) from SAP UI5 application as a standalone application and not from Html.Is there a way of doing it?

Thanks and Regards,
Pradeep

Accepted Solutions (0)

Answers (5)

Answers (5)

Hi all,

here is the solution to this problem. (written in German)

https://fiori.acando-live.de/2019/02/oeffnen-einer-sap-gui-transaktion-aus-einer-fiori/

Cheers,

Sebastian

former_member558681
Discoverer
0 Kudos

Hello Pradeep,

Did you find the solution for this?

eyup_aksoy
Explorer
0 Kudos

Hi

I did it with wda.

you can call any transaction from wda and wda link embeded to sap ui5 view as html tag

or screen personas, open transaction with screen personas then you have a link from app. and embeded to sap ui5 view as html tag.

	<Page xmlns="sap.m" id="information" title="" showNavButton="true" showHeader="true" backgroundDesign="Standard" navButtonPress="onBack">
		<content>
			<HTML xmlns="sap.ui.core" id="html" content=""/>
		</content>
	</Page>
on init

	var html = new sap.ui.core.HTML();
			html = this.getView().byId("html");
			
			//window.open(sUrl, "_self");
			html.setContent("<iframe src=" + sUrl + " width='100%' height='100%'></iframe>");
Former Member
0 Kudos

Hi eyup aksoy,

I do not want to open it in HTML but open it as standalone GUI,similar to when we double click on GUI icon on the desktop.

Thanks,
Pradeep

0 Kudos

Hi Pradeep,

Please find below link which will guide you to launch SAP TCode from SAP UI5 Application.

https://archive.sap.com/discussions/thread/3390998

Former Member
0 Kudos

Hi Prakash,

The link you provided shows how to open the GUI link in browser which is not my requirement.
I do not want to open it in HTML but open it as standalone GUI,similar to when we double click on GUI icon on the desktop.

Thanks,
Pradeep

Former Member
0 Kudos

Hi All,

A small update:

I downloaded a file which is .sap file. I have to run this file without the user action.Can anyone help me on this?

Thanks,
Pradeep