Navigation can be added to steps using commands. The following commands are used for navigation in a step:

The following example shows how you can use navigation commands along with task commands in your steps:

<step id="FirstStep">
  <title>First Step</title>
   <detail>Details of the first step: Demonstrates simple navigation
   </detail>
     <navoption>
       <option default="true">
             <label>Next Step</label>
             <command type="EXECUTE_STEP_TASKS" />
             <command type="NEXT_STEP" />
       </option>
       <option >
             <label>Redo Step</label>
             <command type="DROP_STEP_TASKS" />
             <command type="REDO_STEP" />
       </option>
       <option >
             <label>Jump to [T]hird Step</label>
             <command type="DROP_STEP_TASKS" />
             <command type="GOTO_STEP" value="ThirdStep" />
       </option>
       <option >
             <label>Jump to [F]ourth Step</label>
             <command type="DROP_STEP_TASKS" />
             <command type="GOTO_STEP" value="FourthStep" />
       </option>
      </navoption>
  </step>

Note that when adding navigation options, you should surround the hot-key letter with brackets:

Load [W]izard.

If no brackets are present, CIM automatically designates the first letter as the hot key. CIM will throw a runtime error if a single step includes multiple equivalent hotkeys.


Copyright © 1997, 2013 Oracle and/or its affiliates. All rights reserved. Legal Notices