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 |
|
- Building the Create SLA wizard
- Step 1: Define the start node of the wizard
- Step 2: Prompt the user to select SLA type
- Step 3: Prompt for customer information
- Step 4: Prompt for SLA title and description
- Step 5: Prompt for effective dates
- Step 6: Ask about agreement documents
- Step 7: Prompt to add agreements
- Step 8: Save new SLA and prompt for SLOs
- Step 9: Call the Availability SLT wizard
- Step 10: Prompt for another Availability SLT
- Step 11: Call the Response SLT wizard
- Step 12: Prompt for another Response SLT
- Step 13: Display new SLA number and title
- Step 14: Set menu to call the new SLA wizard
Step 12: Prompt for another Response SLT
The next step is to ask the user if they want to add another response SLT. If they do, this panel must call the out-of-box Reponse SLT wizard again. If they do not want to add any more response SLTs, they should be shown the final wizard screen.
Perform the following two tasks to design a wizard panel to prompt for another Response SLT.
Task 1: Create a wizard for more Response SLTs
For this task, you will create a wizard so that users can create more Response SLTs.
To create a wizard so that users can create more Response SLTs, follow these steps:
- Click Tailoring > Wizards. The Wizard information form opens.
- Select the Wizard Info tab.
-
In the Wizard Name field, type SLA Create Response 2, and then click Add.
Caution If you use an existing SLA record to create a new SLA wizard panel, click Add rather than Save. If you click Save, you will replace the existing record with the new record you are attempting to add.
-
In the Wizard Info tab, complete the following fields.
Field Value Start Node? Leave this option unchecked. Brief Description Type:
This wizard panel will ask the user if they want to add another Response SLT.
Window Title Type:
Create another Response SLT
Title Type:
Create another Response SLT
-
Select the File Selection tab and the Select $L.file by subtab to complete the following field:
Field Value Initial Expression: $L.create.response.slo=false No $L.file (use typecheck) Select this option to initialize a typecheck file, which acts as a holding file. -
Select the Usage tab and complete the following fields to determine the action that Service Manager should take when the wizard is run:
Field Value Sub Format to Display Enter a subformat name of the format to display. Type:
sla.create.ask.other.response
Request User Input checked. Turn Off Previous Button Only checked -
Select the Actions tab to define the actions when a user clicks Next, Cancel, or Previous within the wizard. Complete the following field:
Field Value Perform Actions On Here you can specify which record(s) will be affected by the action that you are going to perform. This can either be the current file, the list selected (as a whole), or an action to be performed on every single record selected.
Select Current File ($L.file).
Wizard Variables $L.create.response.slo
$L.crate.avail.slo
-
Select the Next Wizard tab and complete the following fields:
Field Value Wizard Name This is the name of the next wizard in a series of wizards. Type:
SLA Create Response 1
Condition The condition determines what happens next. In this case, you entered the next wizard in sequence and an expression that evaluates to "true." Alternatively, you can specify different wizazrds, based on user actions or selections. Type:
$L.create.response.slo=true
Wizard Name This is the name of the next wizard in a series of wizards. Type:
SLA Create Availability 1
Condition Type:
$L.create.avail.slo=true
Wizard Name This is the name of the next wizard in a series of wizards. Type:
SLA Create 8
Condition Type:
true
- When you are finished, click Save.
You have created the wizard so that users can create more Response SLTs. Next, you will create the new wizard form in Forms Designer.
Task 2: Create a form for more Response SLTs
For this task, you will use Forms Designer to create form controls that ask users if they want to create an additional Service Level Target record.
To create a new form for a wizard that creates more Response SLTs, follow these steps:
- Start the Forms Designer.
-
In the Form field, type sla.create.ask.other.response.
Best Practice: Because the form name must match the subformat display entry exactly, you can copy the subformat display entry in the Usage tab and paste it into the Form field. This will help you to avoid spelling errors.
- Click New.
- Click No for Forms wizard.
-
Create the following for this form. When you start to design the new form, make sure the X and Y coordinates are at 0 (zero).
Property Value Group Caption Type:
Would you like to create another Response SLT?
Visible Select.
Radio Button Caption Type:
Yes
Input Type:
$L.create.response.slo
Value Type:
true
Visible Select. Radio Button Caption Type:
No
Input Type:
$L.create.response.slo
Value Type:
false
Visible Select. - Click OK twice to save the new form and exit.
You have created one of the forms needed for the SLA wizard.