Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
Dynamic View Dependencies
Steps taken to ensure better data entry and form usability are critical to a database. This includes visual enhancements and form modifications based on user input. Dynamic View Dependencies (DVD) is a feature of Forms Designer that enables you to display objects and their attributes on a form depending on user interaction.
DVD enables you to create control or layout objects with properties that are evaluated when the form appears to control the appearance of these objects on the form.
You can use dynamic view dependencies to:
- Dynamically determine the properties of a field based on the DVD condition.
- Make a field visible only when another field contains a certain value.
- Dynamically determine the choices in a drop-down list based on the choice in another combo box.
- Dynamically set the font or color of a field based on the value of another field.
- Dynamically set the font or color of a field based on its value.
Note: DVD select statements can only be used on text fields.
You create dynamic view dependencies by specifying conditional statements for properties of a control. The three types of conditional statements for a property are described in the following table.
Conditional Statements | Syntax | Example |
---|---|---|
Simple expression (Field comparisons):
|
FIELD [OPERATOR VALUE]
Note: You can use For more information, see Field comparisons and Use field comparisons. |
|
Value:Display expression (Field value matching)
|
FIELD ? ValueList : DisplayList
For more information, see Field value matching and Use field value matching. |
[$severity]? "sev1","sev2","sev3" : 1,7,2,13 This example returns a value as follows:
|
Function call (Dynamic functions):
|
FUNCTION(ParaList)
For more information, see Dynamic functions and Use dynamic functions. |
select( "subcategory", "subcategory", "category", [$category] ) This example returns a list of subcategory names from the |
Service Manager includes a form, dep.g, which demonstrates Dynamic View Dependencies.
Related concepts
Field comparisons
Field value matching
Dynamic functions
Related tasks
Use field comparisons
Use dynamic functions
Use field value matching