Author: Julian Schmuckli
-
How to setup a workflow for Xcode Cloud build?
The service Xcode Cloud was introduced a couple of years ago and has been improved over time. In this small guide, I just want to show case you, how simple it is to setup a such workflow in Xcode Cloud to build and deploy your apps no longer on a local machine. Instead with Xcode…
-
The different places where you can define the bundle version of your iOS app for Xcode Cloud
I’m developing an iOS app a while ago and recently moved to Xcode Cloud to build the app there. To switch to this method, we need to set the version in our project like bundle version and bundle version string (short) to the newest version. Therefore, we have in the build settings for each target…
-
How to use the setting URL Hash Fragment in SAP Web IDE?
You may have asked yourself, how to use this setting “URL Hash Fragment” in the run configurations, where you can set settings for your test environment. The question mark icon next to it, does unfortunately not really describe what to do. So therefore, I have tested it myself and found out, that it always must…
-
The different count modes in SAPUI5
In the UI5 framework, we do differ how we want to setup the count requests, when an OData service gets called. The mode how this count should be sent and retrieven, can be set in the manifest.json file. Therefore we can set the following options: Count mode Description Inline Count is retrieved by adding $inlinecount=allpages to data…
-
Counting chars or entries in new ABAP syntax
May you wanted to count the length of a simple string or the total rows of an internal table. With the new ABAP syntax, it is possible to get these counts and lengths within the same line. Counting characters in a string With this method you can easily check the length of the string at…
-
How to make an App-To-App Navigation with a specific route in SAP Fiori Launchpad?
If you want to open a specific route from your SAPUI5 application to open another application within the Fiori Launchpad (FLP), you might wonder how to do this with the CrossApplicationNavigation service? Well, the parameters, which can be sent through the method toExternal, are not clearly documented. Although there are possibilities to set the route…
-
Notes for classification data in SAP systems
Since I got recently a few times to this case, where I had to do something with classification data in SAP ECC, I had to wrote down some of the important tables and transactions. Tables Technical name Description Important fields CABNCABNT (Text) Characteristics names (Merkmalenamen) ATNAM (CABN)ATBEZ (CABN) CAWNCAWNT (Text) Characteristcs values (Merkmalwerte)– ATWRT ATWRT…
-
Fetch an empty structure of an entity in an OData service
Did you asked yourself, how to get an empty structure, with empty strings and booleans set to false from your OData service to use it later in a local JSON model. To achieve this, we need here again the service metadata from our OData model. Test case To test our code from above, we have…
-
Fetch a JSON meta structure from an entity of an OData service in SAPUI5
I recently had to fetch a complete structure of an entity in my OData service to get the labels and attribute type like Edm.DateTime etc. Please note that this tutorial only has been tested with an OData V2 service. This allows you to works with large entities for example to handle an Excel export function,…
-
Resize an image with ABAP to create a thumbnail
In this small tutorial, you will see how to turn your image for example from a DMS in a SAP ECC system to a new image size. This allows you to simply publish a smaller image size to your client for example via an OData service and improves therefore the load speed. To be able…