Like most developers, I'm very lazy and want to do things the neat, quick and cool way whenever I can. Today's quick hack is showing you how I very quickly display the fields of a data resource, whether it be on a list or on a detail page.This hack i...
Managing and displaying large amounts of data in an application tends to require a lot of consideration, as it is easy to make performance suffer. I recently built a very performant list page for a S/4 HANA Cloud endpoint with 65k+ records using SAP ...
If you've ever tried to layout things in a grid using SAP Build Apps, you might have noticed that it's not as easy as you might think it would be. In this blog I will teach you how to make responsive grids that look just the way you'd expect them to!...
Want to learn how to make your own selectable calendar component you can style and modify for your SAP Build Apps application? Look no further! In this blog I will go over the basic principles of creating a calendar component for your SAP Build Apps ...
Last week, Fabio Vettore published this blog post about loading a CSV file into SAP Build Apps and further to a Visual Cloud Functions backend. This intrigued me as I was planning on doing a CSV import to an app I was working on, but I thought to do ...
Hi,that’s correct, there’s a problem with the multicombobox that I have fixed in an upcoming update.Meanwhile you can fix this by changing the formula to MAP(internalProps.tokenList, {token: item.token, selected: DEFAULT(FIND<existing>(privateVars.to...
Hi Vipin,This is not my expert topic, but all BTP integrations use BTP auth and that is their way to be secure. If you'd like to know more about BTP destinations in general, please see the documentation for the service you would be integrating from (...
Hi, I will need more information to be able to help you further, because the formula I provided you works when I tested it. Here's a working example, e.g. first button sets page variable `result` with formula `pageVars.result + "1"` and the input fie...
Alright, so that formula would only set the most recent number into the page variable. You would want to append it to the existing content, so the formula should be something like `pageVars.theVariableYouUseToDisplayWhatYouWantDisplayed + "7"`.