Re: Gateway service works in SAP GUI gateway client but not in SAP UI5 model
Hi Christoph, is your path correct? By default the services are located in "/sap/opu/odata/sap/XXX_srv". Regards,Florian
View ArticleRe: Gateway service works in SAP GUI gateway client but not in SAP UI5 model
Hi Florian, yes path is correct. It's in customer specific name space...I copied path from gateway client where I tested service! Christoph
View ArticleRe: Gateway service works in SAP GUI gateway client but not in SAP UI5 model
Hi Florian, maybe there is some customer specific configuration necessary that customer specific gateway services are working? var oModel = new sap.ui.model.odata.ODataModel(...
View ArticleRe: Gateway service works in SAP GUI gateway client but not in SAP UI5 model
Ok, did you check if the service works if you call it directly in the browser ("http://<server>:<port>/<path to service>")? If that works, than the relative path should be ok, if you...
View ArticleRe: Creating an UI5 service in own namespace with Team Provider
JurgenI had tried this sometime back, I could not create UI5 apps under customer namespace thru Eclipe Team Plug in.Looks like the Team Provider creates it under the sap namespace by default. The...
View ArticleRe: Gateway service works in SAP GUI gateway client but not in SAP UI5 model
Hi Florian,when I call the URL in the browser it's also working - but no bindings in the omodel...I will try to create test service in Z-space and not in the customer space... Christoph
View ArticleRe: Setting ToolTip for sap.m.Button
Hi Stef, TooltipBase is abstract class. Try intiailizing with sap.ui.commons.RichTooltip. var oToolTip = new sap.ui.commons.RichTooltip({ text: "test" }); -Rashmi
View ArticleRe: Setting ToolTip for sap.m.Button
Hey Rashmi, thank you for your quick reply, but I also tried this and it didn't work either. When does the Tooltip's going to be openend? I mean. I have a simple button and I just want to see the...
View ArticleRe: Gateway service works in SAP GUI gateway client but not in SAP UI5 model
Hi Christoph, the customer namespace is just a part of the path. So if you would have a service called /abc/test_service, than the service should be available as /sap/opu/odata/abc/test_service. You...
View ArticleRe: Setting ToolTip for sap.m.Button
Hi Stef, I tried at my place. with tooltipbase i get the same error but Richtooltip it works. Just on mouse hover i see the text. -Rashmi
View ArticleRe: XML View: Binding of first element property
Hi all, I just tested again and now it's working... <Label xmlns="sap.m" design="Standard" text="{/MAIN_OBJECTSet('1')/PROPERTY_NAME}" visible="true" textAlign="Begin" textDirection="Inherit"...
View ArticleRe: Add row to UI5 table from other table
Hi Frank, Thanks for the prompt reply. I have bound the main table to the model (as I learnt from the link in my post) but am not sure how to push data in the model from a separate table.Do you have...
View ArticleRe: SAPUI5 cache control issue
Yes, I use jQuery.sap.includeStyleSheet as well as <link> to include CSS. When I turned on the cache buster together with appCacheBuster I got the following errors: I've executed the above...
View ArticleRe: Open the attachments in SAP UI5?
I gave the same thing in SAP Netweaver Gateway client.It's displaying the PDF as response
View ArticleRe: Open the attachments in SAP UI5?
Hi Chandrasekhar, Sorry.I did a mistake in placing the single quotes in the src attribute of html tag.That's why its not fetching the content.Now I removed the single quotes in src attribute and...
View ArticleRe: Mouseover on table rows
Hi Micha,I havn't done this, but my idea would be to define your own control as described here OpenUI5 SDK - Demo Kit - e.g. by extending from a control that you already use in that table. Then you can...
View ArticleRe: Add row to UI5 table from other table
Hi Saumya,here is a very basic example.Regards, Frank var result = new sap.ui.model.json.JSONModel(); sap.ui.getCore().setModel(result); oJsonData = { Category_Sales_for_1997 : [ { CategoryName :...
View ArticleRe: SAPUI5 Bootstrap Script Query For Application Cache Buster
i believe in that case the fiori local snadbox index.html has to implement the cache buster, or you cache menifest mechanism route.
View ArticleUI5 - Programmatically moving from context of one tile to another
Hello UI5 Experts, I have written an application utilizing Fiori Launchpad. My application has 2 separate tiles each containing a UI5 application. What I would like to do is to move from context of...
View Article