Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
nameblue
Metadata

Messages

Messages provide useful information for an exception, warning or information (expected values, actual value, missing data, etc). The messages.xml file contains a list of messages that can be usedIn this metadata file you can define the message texts and map an error message to a Java exception.

Attributes

NameDescriptionValue
code

The exception class path that corresponds to the message.

Any of the exception classes
expressionThe expression as displayed on the screen.Any
descriptionThe description of the message as displayed on the screen.Any

Example

Expand
titleMessages
Code Block
themeEclipse
languagexml
titleMessages
<messageconfig>
	<messages>
		<message>
			<code>COM.CRM.EXCEPTION.PRIMARYFIELDEXCEPTION</code>
			<expression>Cannot delete the default record.</expression>
			<description>Cannot delete the default record.</description>
		</message>
 
		<message>
			<code>COM.CRM.EXCEPTION.MANDATORYFIELDEXCEPTION</code>
			<expression>Please specify %1.</expression>
			<description>A mandatory field is not specified.</description>
		</message>
 
		...
 
	</messages>
</messageconfig>