
Welcome back to this blog series on becoming as effective Citizen Developer with SAP Build Apps! In the previous blog, we discussed what variables are and the different types of variables that you can make use of within SAP Build Apps. In this blog I will explain how to create variables in SAP Build Apps and how to assign meaning to these variables.
To create a variable in Build Apps set the toggle in the top right to the variable view:
Navigate to which variable you would like to create and at the bottom right, click on “Add Variable”:
Now, give your variable an appropriate name in the right hand panel. This can be anything you see as relevant for the purpose of the variable:
But, ensure that you select the correct variable type In the drop down under “Variable value type”. The variable type will define the structure of the data that your variable will hold. The type will determine what actions can be performed with the data. For example: if you wish to perform calculations with this data, it wouldn’t make sense for it to be structured as text, but rather a Number. Similarly, we can create a variable of type “Email Address” to associate with a specific user. This way we can even verify that the value inputted is indeed an email address and ensure data integrity.
For now, we can keep the variable type as “Any value”, at the bottom of the list. We will discuss validating email addresses in the next blog on conditional logic.
Now that we have created, or in programming terms, instantiated a variable, we need to assign it, in other words: we have to assign a specific data value to it in order to give it meaning. But let’s see an example: in the steps above, we created a variable called “User” of type “Any type”. We will assign an email address as the value to identify a specific user. But what is the actual email address that this variable will hold and how do we define this?
There are various ways to do this in Build Apps, but we will look at a common example which will build on the variable we have created above. In the image below, I have added the following components to the user interface:
This will bring up a panel where you can define what will happen when the button is clicked.
Here we have 3 distinct options:
For now, we will only work with setting app variables. However, we will make use of setting data and page variables in the coming blogs.
Now, let’s build the logic flow to assign meaning to our user variable!
So far, we have created logic to set some app variable to some value when the button is clicked. Now, we will specify which variable we will assign and what the assignment value will be.
Now that we know which app variable we want to set, we need to specify what value we want to set it to.
We want to bind the value of the variable to the value of the input. For this, select “Component properties” as the binding type:
Since we are currently working on the button component, we will find the input field value under “Another component’s property or output value”:
Now we select the component who’s property we want the value of. In other words, since we want the value of Input field 1, we will select it and drill down to the value that is inputted:
Be sure to save this!
Now we have successfully set the value of the App Variable! We can test this by adding a toast to check the value of the variable.
Now, add the toast to your logic flow. This means that once the variable has been set, the toast message will pop up:
Select the toast component and in the “Properties” tab on the right hand side panel, we can add the value we want to display in the toast message:
Now, we want to bind the toast to the value of a variable, so select “Data and Variables”:
Since the variable we are looking at is an app variable, select “App variable” and then the user variable that we created and make sure you save this:
Now, launch the application and enter an email address and when you click the button you will see the toast appear at the bottom of the screen. This toast will contain the value that has been passed to the user variable: your email address!
A variable is one of the most powerful programming concepts, but they don't mean anything in your application until you assign them. Now that we understand how to create variables and assign meaning to them, we will take start to understand what conditional logic is and how it works in the next blog.
Remember to share your feedback and experiences with creating variables in the comments!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
21 | |
12 | |
12 | |
11 | |
10 | |
9 | |
9 | |
8 | |
7 | |
7 |