Chapter 9: Customizing Your App
In this chapter, we will dive deeper beyond opening pages and saving records. We will take a closer look at adding custom business logic and rules to drive user experience and functionality. We will turn your user stories into working, navigable applications that take your development to the next level!
To help get us there, we will cover the following topics and concepts:
- Functions and expressions – We will discuss functions that will help us work with and manipulate string attributes, integers, enumerations, and DateTime attributes. We will also explore relational expressions that are used to work with multiple data points at the same time, for example, finding the delta between two integers.
- Sub-microflows – You may know what a microflow is, but what is a sub-microflow? In the previous chapter, we extracted a set of activities in a microflow to create a sub-microflow. But why was that necessary? In this chapter, we will...