Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
2k views

I have already built an application using SAPUI5 1.108. When launch the application locally (npm run start), everything works as expected. However, I didn't notice that the system where the ...
szelbi's user avatar
  • 132
0 votes
1 answer
1k views

I am working on my first Fiori app by following Excel Upload using RAP: Part -3 | SAP Blogs. Since the blog is a bit old now I have had to edit a few things from the blog to make it work. Now, I am ...
Archit Chhabra's user avatar
2 votes
2 answers
221 views

I would like to ensure that when I select an element in my list all the details are shown to me, I wrote a function but I'm probably doing something wrong and since I'm new to SAPUi5 I would like to ...
Malinowa's user avatar
1 vote
1 answer
112 views

I have an OpenUI5 project with the structure depicted below. It contains one RootComponent that displays two other separate Components (UserComponent and AdminComponent). my-app/ ├─ node_modules/ ├─ ...
BenjyTec's user avatar
  • 12.6k
0 votes
1 answer
269 views

I have my view bound like this to an oData model: this.getView().bindElement({ path: 'Entity(ID='1234')', model: 'odataModel', ... }); The data would look like this: { "ID": &...
Flo's user avatar
  • 39
0 votes
1 answer
1k views

I am creating a To-Do List App in SAPUI5 and have connected my OData V4 Model from a CAP Project. The issue I have is that I cannot update my Object status to "done" when it is selected. I ...
machko's user avatar
  • 1
0 votes
1 answer
3k views

I have a pretty standard ui5.yaml setup as follows.. specVersion: "2.3" metadata: name: itcpc.cms type: application framework: name: SAPUI5 version: "1.84.26" libraries: ...
Adam Harkus's user avatar
  • 2,260
0 votes
1 answer
1k views

I would like to use the sap.m.PDFViewer to display my PDF files which are included to the UI5 project. The file is found and loaded but the viewer displays the default error message and in the console ...
AntonSack's user avatar
  • 1,047
0 votes
0 answers
186 views

I have an XML fragment which works fine when using value="{path: 'ReceivedQuantity', formatter: '.formatQuantity'}" But if I want to send multiple parameters to this formatter function, ...
MKHC's user avatar
  • 459
2 votes
1 answer
2k views

I have an unmanaged rap scenario, where the topmost root entity is covered with a projection, the corresponding behav also has a projection. The generated implenentation of the behav created empty ...
icbytes's user avatar
  • 1,871
1 vote
1 answer
176 views

I am developing a custom Fiori app (let's call it App1) that uses the thirdparty library D3. I needed the newer version (7.5.0) since the existing sap/ui/thirdparty/d3, that is bundled with OpenUI5, ...
Alisa's user avatar
  • 51
1 vote
1 answer
173 views

On SAP UI5, after rendering when I try to call any components such as button's using its ID and perform any events like click is not working from Karate. click("[id='ValidationGroup::LineItem::...
user8520630's user avatar
1 vote
0 answers
75 views

I have an OpenUI5 application with the following folder structure: The two manifest.json files are defined as follows: Main manifest.json: { "_version": "1.48.0", "...
momiavive's user avatar
1 vote
0 answers
70 views

I have a sapui5 app using the version 1.108.20. I used documentation on how to handle events in xml views (https://sapui5.hana.ondemand.com/sdk/#/topic/b0fb4de7364f4bcbb053a99aa645affe) to implement ...
TheDoGie's user avatar
0 votes
1 answer
83 views

Maybe i don't understand the documentation, my test is not working. I'll test an expected error from a function: // file_to_test.js ... myFunctionToTest: function(param1, param2 = "AA-BB") { ...
rammi22's user avatar
  • 399
1 vote
0 answers
214 views

I have an SAPUI5 table (sap.m.Table). The items are from the OData v 4 model - they are obtained automatically (/catalog/cars). Each row has a CarID key. There is another OData v 4 service that I can ...
VilleLipponen's user avatar
0 votes
1 answer
486 views

I want to mdisplay to local PDF files in my sap ui5 application but it is not showing the files. I tried the following but it does not work. I cannot make the path work properly I have the files on my ...
boba_fett's user avatar
1 vote
1 answer
743 views

I need to setup oData binding in a view so that, by default the items aggregation of a table (containing products) is 'suspended' until I click a button that 'resumes' the binding and loads in the ...
Adam Harkus's user avatar
  • 2,260
1 vote
0 answers
448 views

I try to create Table Personalization the same like in this link , see it please first Table Personalization but I get as you can see in this photo , only columns, there are no sort, no filter, no ...
Mahmood Hammood's user avatar
1 vote
0 answers
2k views

I want to create a header with its 2 associations in one go. My behaviour class exists, the "create" on the root entity is called properly and twerks nicely. But the passed parameter for ...
icbytes's user avatar
  • 1,871
0 votes
1 answer
348 views

I'm trying to create a new Incoming payment using the service layer but I received this error G/L account is not valid [PaymentAccounts.AccountCode][line: 1] My JSON is: { "DocType": &...
Guilherme Luzin's user avatar
-1 votes
1 answer
764 views

I wanted to pass multiple parameter as INPUT for ExpandedentitySet. Could anyone help on URI alone ? Tried many combinations but couldn't able to decode. OData V2 Attempt 1: /sap/opu/odata/sap/...
GSAP's user avatar
  • 1
0 votes
1 answer
43 views

I would like to download JSON from my app to disk. For this purpose I am retrieving the JSON as encoded string from the backend and using this approach: const uri = `data:text/json,${sJSONContent}`; ...
AntonSack's user avatar
  • 1,047
1 vote
2 answers
2k views

I am trying to use Northwind data service (OData V2) in my SAPUI5 app. However, I am not able to get any data at all from the server. This is my XML view: <mvc:View controllerName="c.g....
SAP ASFlash's user avatar
0 votes
1 answer
232 views

I am trying to validate an IBAN inside of a Wizard in SAPUI5. To do this, I use a functionImport on an V2 ODataModel (sap.ui.model.odata.v2.ODataModel). The request comes back with a 202 status code ...
thunermay's user avatar
  • 384