Steps are where the work of a CIM plugin is outlined. Each step should consist of a logical group that can be presented to the user as a single entity. When the step is complete, the following events have taken place:

To insert a step, place the following XML snippet inside a process tag:

<step id="step_ID" insert-after="other_step_ID" type="standard_or_base"
 class="class_name">
  <title/>
    <detail/>
    <property name="some_name">
      <value>value</value>
    </property>
     <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>
      </navoption>
</step>

Steps have the following attributes:

Steps contain the following elements:

For an example, see the Example CIM Plugin section of this chapter, or review the wizards.xml file located at <ATG10dir>/CIM/plugins/base in your Oracle ATG Web Commerce installation.


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