There are plenty of functions and way to do almost anything Jannes.
It really depends on how and where you want to use it.
For example.
NVL(value, ‘something’)
So if you want some attribute, let’s call it result, to equal a value if it is not Null and equal something if the value is Null...
In the BO rule...
If MyBO.Value IS UNDEFINED Then
MyBO.Result = ‘something’
Else
MyBO.Result = MyBO.Value
There is no CASE in Aware but there is nested IF THEN ELSE
There are many very cool things that make life easier also such as IN and CONTAINS
If MyBO.Value IN ‘Red, Blue, Green’ then.....
If you get stuck with something then don’t hesitate to ask.
This is an awesome group if seriously clever Aware minds and it is rare that they cannot come up with a solution.