on 2017 Jun 28 8:55 AM
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
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>");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
User | Count |
---|---|
65 | |
10 | |
10 | |
7 | |
6 | |
6 | |
5 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.