RunControl Object

RunControl — XML generated document from 4GL logic.

Introduction

The RunControl is an XML document generated from the 4GL source. It contains the series of logic commands to be executed including all the arguments and step order. This document should NOT be modified manually. For more information, check the ProLinga-Validate project documentation.

Example

<Object Application="MyOrder" Type="RunControl" Name="CustomerNew">
  <RunControl>
    <Statements>
      <Statement SequenceNo="1" NextTrue="2" NextFalse="2" Command="2">
        <Arguments>
          <Argument>TITLE</Argument>
          <Argument>"Customer -  untitled"</Argument>
        </Arguments>
      </Statement>
      <Statement SequenceNo="2" NextTrue="3" NextFalse="3" Command="4">
        <Arguments>
          <Argument>RECORD</Argument>
          <Argument>Customer.Customer</Argument>
        </Arguments>
      </Statement>
      <Statement SequenceNo="3" NextTrue="4" NextFalse="4" Command="5">
        <Arguments>
          <Argument>F-CountryCode.Customer</Argument>
          <Argument>P-CountryCode(1)</Argument>
        </Arguments>
      </Statement>
      <Statement SequenceNo="4" NextTrue="5" NextFalse="5" Command="8">
        <Arguments>
          <Argument>ALL</Argument>
        </Arguments>
      </Statement>
      <Statement SequenceNo="5" NextTrue="0" NextFalse="0" Command="3">
        <Arguments>
          <Argument>"Created new customer entry."</Argument>
        </Arguments>
      </Statement>
    </Statements>
  <RunControl>
</Object>