Skip to end of banner
Go to start of banner

Customise Messages Metadata

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Messages metadata file is used to define the error, question, and informational messages used by the system. This section describes how custom messages can be defined. For more information on creating new messages, please go to Implement Messages.

 

What does this section cover?

Messages File

Custom messages are declared in messages.xml file, which must be created under <custom_project>/web/WebContent/metadata directory. 

Define Custom Messages

To define a custom error, question or informational message you have to use a unique message code and define the message expression and description.

For the expression value, you must use a key. For more information on how to use glossary mechanism implementing messages, go to go to Use Glossary Mechanism - Exceptions / Questions / Informational Messages

In the following example, a new error message is defined

messages.xml
<messageconfig>
	<messages>
		<message>
			<code>EXCEPTION.NOEFFECTIVESMSSETTINGSEXCEPTION</code>
			<expression>key_exception_noeffectivesmssettings</expression>
			<description>No Effective SMS Profile Settings Configure In The System.</description>
		</message>
		...
	</messages>
</messageconfig>

 

For a full list of metadata messages attributes, go to Messages Metadata.

  • No labels