Validation Flashcards
You have added fields for entering the name and address of a loan applicant. What validation methods would you use?
Define the name and address properties as text property types.
Name two types of validation rules?
validate
edit validate
Which validation method would be appropriate for checking that a user enters a date for scheduling a home inspection that is in the future?
A validate rule.
How would you configure a field in which a user selects one of four possible shipping methods?
A picklist field and specify either a radio button or a dropdown control type.
When would you use the required fields validation approach?
When you want to make sure users enter a value before they can continue.
How would you ensure that a user always enters 20 characters in a field?
Use the editable settings to set both minimum and maximum number to 20 characters.
Validate rules enable you to use a single property when?
Different values are required based on business logic.
How is the validation creating process in App Studio different than the process in Dev Studio?
App studio automatically applies the validation rule to the flow action that corresponds to the user view.
Also, only supports comparisons against a constant value.
Why must a validation condition that tests whether a date is in the future or the past be configured in Dev Studio?
Requires the use of a function which can be accessed via Dev Studio
You have added a field for entering a U.S phone number.
Do you use a integer data type or an edit validate rule to validate that the phone number is in the correct format?
An edit validate rule.