ErrorDialog Object
ErrorDialog — Contains error information.
Introduction
      Can be used to store predefined error text and severity level.
    
Properties
Table 10. ErrorDialog Object Properties
| Name | Details | Possible Values | Default Value | 
|---|
| Severity | Severity of the error. | Info, Warning, Question, Error | Error | 
| ErrorText | The error text to be displayed. | * | - | 
| Description | Description to be used in lists. | * | - | 
| DetailDescription | Detailed description. | * | - | 
| Modified | Modification date-time stamp in ISO 8601 format. | ccyy-mm-ddThh:mm:ss | date stamp | 
Example
<Object Application="MyOrder" Type="ErrorDialog" Name="MaxOrderLines">
  <ErrorDialog>
     <Severity>Error</Severity>
     <ErrorText>Maximum order lines reached.</ErrorText>
     <Description>Maximum Order Lines</Description>
     <DetailedDescription>Maximum of possible order lines on a single order reached</DetailedDescription>
     <Modified>2007-11-12T09:58:00</Modified>
  </ErrorDialog>
</Object>