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 |
|
- Troubleshooting
- Button options are not displaying properly
- File variables not passed into wizard flow
- Format not found
- JavaScript syntax errors
- Query failed to provide correct results
- Query returned a list of records rather than a single record
- RAD expression syntax errors
- Records are not sorted properly
- Wizard stops with "Could not continue" errors
- Run a trace
JavaScript syntax errors
The wizard stops executing, and the user is returned to the calling application with the following error message(s) at the top of the screen:
Process panel <panel name> in RAD wizard.run encountered error in line 5 (wizard.run,<panel name>)
Process panel init.expr in RAD wizard.run encountered error in line 5
(wizard.run,init.expr)
Cannot evaluate expression (wizard.run,init.expr)
Script <UNKNOWN> line 1: ERROR ReferenceError: test is not defined at char 1
Unrecoverable error in application: se.call.process on panel call.rad.1
Unrecoverable error in application: wizard.run on panel init.expr
Cause
Invalid syntax was entered in a JavaScript tab. The RAD application and panel will give you a hint as to which JavaScript tab the syntax error was entered. Refer to the table below for help in determining where to make the fix.
RAD application/panel | Where to fix |
---|---|
|
JavaScript subtab of the File Selection tab. |
|
Query statement in the Select $L.file by subtab of the File Selection tab. |
|
Expressions subtab of the Actions tab. |
wizard.run,exit.cancel
|
Javascript Executed on Cancel subtab of the Cancel Expressions tab. |
Fix
Correct syntax for JavaScript expressions is discussed in the JavaScript Programmer's Guide. When using JavaScript, you must define variables before using them. For example:
var <name>=new String()
The correct syntax for assigning a value to a field is as follows:
Table.field1=value
To compare the values of two fields to each other, use the following syntax:
Table1.field1==table2.field2