Category: UI5 Programs
Google Firebase Setup
Introduction Welcome to the ultimate guide for setting up Google Firebase! Whether you’re a beginner or an experienced developer, this comprehensive tutorial will walk you through the process of setting up Firebase for your project. Firebase provides a suite of powerful services and tools that can help you build, improve, and scale your applications with…
Connecting a UI5 Web App with Google Firebase
[et_pb_section admin_label=”section”] [et_pb_row admin_label=”row”] [et_pb_column type=”4_4″][et_pb_text admin_label=”Text”] Introduction Are you looking to connect your UI5 web application with the powerful capabilities of Google Firebase? Look no further! In this comprehensive tutorial, we will guide you through the process of seamlessly integrating your UI5 web app with Google Firebase, allowing you to leverage Firebase’s robust features…
How to Generate Mock Data in UI5
Introduction As a UI5 developer or a UI5 tester, you may often need to generate mock data for testing your apps. This can be a time-taking task, especially when you need to test a large amount of data. Fortunately, we have several tools provided by SAP to make this process faster and more efficient. In…
Create a SAP UI5 Project using ChatGPT
What are SAP UI5 Projects and why do we need them? SAP UI5 (SAP User Interface for HTML5) is a JavaScript-based framework for building web applications that run on desktop, tablet, and mobile devices. It provides a set of UI controls, libraries, and tools for creating modern, responsive, and scalable user interfaces. The SAP UI5…
How to Integrate ChatGPT in SAP UI5
Preface – This post is part of the UI5 Integration Programs series. Introduction It is not possible to directly integrate ChatGPT using a CDN (Content Delivery Network) as GPT-3 model is not hosted on any public CDN. GPT-3 is a proprietary model owned by OpenAI, and access to it is provided through the OpenAI API, which requires an…
Using models.js in SAP UI5 (to maintain all Global Models)
Preface – This post is part of the UI5 Programs series. What is model.js file in SAP UI5? A model in terms of UI5 is a set of data (mostly in JSON format) that can be binded with elements of UI5. For different properties of different elements, the type of model data differs, for example: For the…
Using formatter.js in SAP UI5 (In View and Controller)
Preface – This post is part of the UI5 Programs series. What is a formatter in UI5? A formatter in UI5 is a model that is created to store functions. Each function is used to format the data into a specific format. Generally, it is used to perform the following: Format Data to a specific type (dd/mm/yyyy or…
Using i18n.properties in SAP UI5 (View, Controller, Adding comment in i18n)
Preface – This post is part of the UI5 Programs series. What is i18n? i18n, which stands for internationalization, are Translatable Texts, all in a single place. It means a developer should keep all the texts of their app within i18n so that, in case it is required to have another version of the app with a different…
Master Detail with multiple fragments for detail and single controller in SAP UI5
Preface – This post is part of the UI5 Programs series. In this article, we will learn Master Detail with multiple fragments for detail and a single controller in SAP UI5. Visit this page, in case you are looking for Master Detail with multiple views and multiple controllers for detail Main.view.xml In this use case, our Application name…
Master Detail with multiple views and multiple controllers for detail in SAP UI5
Preface – This post is part of the UI5 Programs series. In this article, we will discuss Master Detail with multiple views and multiple controllers for detail in SAP UI5. Visit this page, in case you are looking for Master Detail with multiple fragments for detail and a single controller. App.view.xml The UI5 App name in our use…