A company has a process that requires a birthday validation. At the beginning of the process, the user is asked to input their birthday. If the user is less than 18 years old. then the process should display an error stating that the age cannot be less than 18. The process should restrict users from continuing. If the user is 18 or older, then the process should proceed without any error message.
Which two OmniScript features should the consultant recommend to meet this validation requirement?
Choose 2 answers
A. Calculation
B. Messaging
C. Alert
D. Formula
B. Messaging D. Formula
Explanation:
The two OmniScript features that the consultant should recommend to meet this validation requirement are: Messaging and Formula. A Messaging element is an element that can display a text message with an icon and a color, such as blue for information or yellow for warning. The consultant can use a Messaging element to display an error message stating that the age cannot be less than 18 if the user’s birthday indicates they are under 18 years old. A Formula element is an element that can perform calculations or validations on data values using expressions or functions. The consultant can use a Formula element to validate the user’s birthday by subtracting it from the current date and checking if the result is greater than or equal to 18 years.