<?xml version="1.0" ?> 

<jump-container type="dialog">

<Composite name="PhaseBreakDialog" title="Break Execution" description="Specify how you want to continue the execution after a break">

<InfoText name="Info"><![CDATA[<html>
The execution is about to continue with the <i>$(ACTION)</i> phase after the break. You may now do one of the following:
<ul>
  <li><i>Continue execution.</i> Continue with the next phase in the list.
  <li><i>Jump to another phase.</i> You can choose the phase you want to jump to from a list of all phases that belong to the current module. You must obtain a password from SAP Support to use this option. 
  <li><i>Exit program.</i> 
</ul>
</html>]]></InfoText>
<InfoText name="Info">What do you want to do?</InfoText>
<ExclusiveSelection name="PhaseBreakOption">
  <INPUT>
    <LABEL>Continue execution</LABEL>
    <VARIABLE>continue</VARIABLE>
  </INPUT>
  <if test="'$(JUMP_ALLOWED)' == 'true'">
    <INPUT>
      <LABEL>Jump to another phase</LABEL>
      <VARIABLE>jump</VARIABLE>
    </INPUT>
  </if>
  <INPUT>
    <LABEL>Exit program</LABEL>
    <VARIABLE>exit</VARIABLE>
  </INPUT>
</ExclusiveSelection>

<NavigationButtonGroup name="Buttons" default="Continue"> 
  <BUTTON name="Continue" enabled="true">#Continue</BUTTON>
  <VARIABLE>BUTTON</VARIABLE>
</NavigationButtonGroup>

</Composite>

</jump-container>
