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
2,035

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

View Entire Topic
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