Haz 9 2016
SAP UI5 open dialog, show pop-up html external page iframe
<!DOCTYPE html> <html><head> <meta http-equiv=’X-UA-Compatible’ content=’IE=edge’ /> <meta http-equiv=’Content-Type’ content=’text/html;charset=UTF-8’/> <title>Dialog popup</title> <script id=’sap-ui-bootstrap’ type=’text/javascript’ src=’https://sapui5.netweaver.ondemand.com/resources/sap-ui-core.js’ data-sap-ui-theme=’sap_goldreflection’ data-sap-ui-libs=’sap.ui.commons,sap.ui.ux3′> <script> // SAP UI5 open dialog, show pop-up // *************************************** function OpenPopup() { var html = new sap.ui.core.HTML(); html.setContent(“<iframe src=\”http://www.karadere.com\” style=\”height:600px;width:600px;\”></iframe>”); var SozDialog = new sap.ui.commons.Dialog({modal: true}); SozDialog.setTitle(“Popup title”); SozDialog.setWidth(“650px”); SozDialog.setHeight(“650px”); SozDialog.addContent(html); SozDialog.addButton(new sap.ui.commons.Button({text: “KAPAT”, press:function(){SozDialog.close();}})); SozDialog.open(); }; </script> </head> <body onload=”OpenPopup();” class=’sapUiBody’> <div id=’content’></div> <div id=’images1′></div> </body> </html>







Haz 9 2016
SAP FIORI launchpad activation on HANA
SAP fiori nin HANA 7.4 ve 7.5 kurulumu ve aktif edilmesi. http://www.karadere.com/blog/sap-fiori-nedir.html But out of these 5, I only had to install the 2 UI add-ons via SAINT. The 3 GBX are not needed as they are already in the system (included in the EA-APPL). When you try to install these GBX you get the […]
Devamı
By Burhan KARADERE • 2015 - 2016 • 1 • Tags: fiori, fiori nedir ?, hana, SAP, saphana