Home > Models
Labels & Error Messages
webMethods MDM allows you to enrich your Master Data models with labels and error messages displayed in webMethods Master Data Manager tool.
Label and description (mdm:label, mdm:description)
A label and a description can be added to each node in an adaptation model.
In webMethods Master Data Manager, each adaptation node is displayed with its label . If no label is defined, the name of the element is used instead.
Notations :
Two notations are available:
- full notation: label and description are defined respectively by the elements
<mdm:label>
and<mdm:description>
. - simple notation: the label is extracted from the text content up to the first dot ('
.
') and/or this extraction is not longer than 60 characters ; the description is the rest of the text.
Link notations :
The description may have an hyperlink, either a standard html href
to an external document, or an webMethods Master Data Manager link to another node in the adaptation.
href
notation, and more generally any html notation must be escaped.- webMethods Master Data Manager link notation is not escaped and it must specify the path of the target, for example :
<mdm:link path="../misc1">link to another node in the adaptation</mdm:link>
Example:
<xs:annotation>
<xs:documentation>
Miscellaneous 1. This is the description of miscellaneous element #1.
Click <a href="http://www.softwareag.com" target="_blank">here</a>
to learn more about webMethods MDM.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name ="misc2" type="xs:string" >
<xs:annotation>
<xs:documentation>
<mdm:label>
Miscellaneous 2
</mdm:label>
<mdm:description>
This is the miscellaneous element #2 and here is a
<mdm:link path="../misc1"> link to another node in the
adaptation</mdm:link>.
</mdm:description>
</xs:documentation>
</xs:annotation>
</xs:element>
If a node points to a named type, then the label of the node replaces the label of the named type.
The same mechanism applies for description of the node (mdm:description).
Enumeration label (mdm:label)
A label can be added to each enumeration element. This property is described by adding the attribute mdm:label in the enumeration element definition.
Example :
<xs:simpleType>
<xs:restriction base ="xs:string">
<xs:enumeration value ="1" mdm:label ="Blue"/>
<xs:enumeration value ="2" mdm:label ="Red"/>
<xs:enumeration value ="3" mdm:label ="White"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
Required error message (mdm:mandatoryErrorMessage)
If the node specifies the attribute minOccurs=”1” (default behavior), then a required error message is displayed if the user doesn't fill the field. This error message can be specific to each node by using the element mdm:mandatoryErrorMessage.
Example :
<xs:annotation>
<xs:documentation>
<mdm:mandatoryErrorMessage>
Please give your birth date.
</mdm:mandatoryErrorMessage>
</xs:documentation>
</xs:annotation>
</xs:element>
Conversion error message
For each predefined XML Schema element, it is possible to define a specific error message if the user entry has an incorrect format.
Example :
<xs:annotation>
<xs:appinfo>
<fmt:string>
<fmt:ConversionErrorMessage>
Please enter a valid e-mail address
</fmt:ConversionErrorMessage>
</fmt:string>
</xs:appinfo>
</xs:annotation>
</xs:element>
Error message associated to a facet
XML Schema facet (mdm:defaultErrorMessage)
The error message is described by the element <mdm:defaultErrorMessage> in annotation/documentation under the definition of the facet.
Example :
<xs:simpleType>
<xs:restriction base ="xs:string">
<!�facet is not localized, error message is also not localized-->
<xs:minInclusive value ="01000" mdm:index ="1">
<xs:annotation>
<xs:documentation>
<mdm:defaultErrorMessage>
Postal code not valid
</mdm:defaultErrorMessage>
</xs:documentation>
</xs:annotation>
</xs:minInclusive>
</xs:restriction>
</xs:simpleType>
</xs:element>
XML Schema enumeration facet (mdm:enumerationErrorMessage)
The error message is described by the element<mdm:enumerationErrorMessage>in annotation/documentation under the definition of the element.
Example :
<xs:annotation>
<xs:documentation>
<mdm:enumerationErrorMessage>
Please indicate your gender.
</mdm:enumerationErrorMessage>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base ="xs:string">
<xs:enumeration value ="0" mdm:label ="male"/>
<xs:enumeration value ="1" mdm:label ="female"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
webMethods MDM Facet (mdm:defaultErrorMessage)
The error message is described by the element <mdm:defaultErrorMessage> under the definition of the facet (which is defined in annotation/appInfo/otherFacets).
Example:
<xs:annotation>
<xs:appinfo>
<mdm:otherFacets>
<mdm:minInclusive path ="../priceMin"/>
<mdm:defaultErrorMessage >
The amount
{1}' is too low.
</mdm:defaultErrorMessage>
</mdm:minInclusive>
</mdm:otherFacets>
</xs:appinfo>
</xs:annotation>
</xs:element>
Libellés et messages d'erreur
webMethods MDM permet d'enrichir vos modèles d'adaptation à l'aide de libellés, descriptions et messages d'erreurs affichés dans l'outil webMethods Master Data Manager.
Libellés et descriptions (mdm:label, mdm:description)
Un libellé et une description peuvent être renseignés pour chaque nœud du modèle de données, que le nœud soit complexe ou simple.
Dans webMethods Master Data Manager, chaque noeud d'adaptation est identifié dans l'arbre par son libellé (mdm:label). Si aucun libellé n’est défini, le nom de l’élément est affiché.
Notations :
Deux notations sont possibles :
- notation longue : le libellé et la description sont respectivement définis par les éléments
<mdm:label>
et<mdm:description>
. - notation simple : le libellé est extrait du texte de la documentation jusqu'au premier point ('.') et/ou cette extraction n'a pas plus de 60 caractères ; la description est le texte restant.
Notations des liens :
La description peut avoir un lien hypertexte, que ce soit un lien HTML standard href vers un document externe , ou un lien webMethods Master Data Manager vers un autre noeud de l'adaptation.
- La notation
href
et de manière générale tout balise HTML, doit être échappée. - la notation d'un lien webMethods Master Data Manager n'est pas échappée et elle doit spécifier le chemin du noeud cible, par exemple :
<mdm:link path="../misc1">link to another node in the adaptation</mdm:link>
Exemple:
<xs:annotation>
<xs:documentation>
Miscellaneous 1. This is the description of miscellaneous element #1.
Click <a href="http://www.softwareag.com" target="_blank">here</a>
to learn more about webMethods MDM.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name ="misc2" type="xs:string" >
<xs:annotation>
<xs:documentation>
<mdm:label>
Miscellaneous 2
</mdm:label>
<mdm:description>
This is the miscellaneous element #2 and here is a
<mdm:link path="../misc1"> link to another node in the
adaptation</mdm:link>.
</mdm:description>
</xs:documentation>
</xs:annotation>
</xs:element>
Si un noeud pointe sur un type nommé, alors le libellé du noeud remplace le libellé du type nommé. Le même mécanisme s’applique à la description du nœud.
Libellé d'énumération (mdm:label)
Un libellé peut être renseigné pour chaque élément d’une énumération. Cette propriété est décrite par l’ajout de l’attribut mdm:label dans la définition de l’élément de l’énumération.
Exemple :
<xs:simpleType>
<xs:restriction base ="xs:string">
<xs:enumeration value ="1" mdm:label ="Blue"/>
<xs:enumeration value ="2" mdm:label ="Red"/>
<xs:enumeration value ="3" mdm:label ="White"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
Message d'erreur obligatoire (mdm:mandatoryErrorMessage)
Si le noeud spécifie l’attribut minOccurs=”1” (comportement par défaut), alors un message d’erreur obligatoire est affiché si l’utilisateur final ne renseigne pas le champ. Ce message d’erreur obligatoire peut être spécifique à chaque nœud qui utilise l'élément mdm:mandatoryErrorMessage.
Exemple :
<xs:annotation>
<xs:documentation>
<mdm:mandatoryErrorMessage>
Please give your birth date.
</mdm:mandatoryErrorMessage>
</xs:documentation>
</xs:annotation>
</xs:element>
Message d'erreur de conversion
Pour chaque type simple XML Schema prédéfini, on peut définir un message d’erreur spécifique si la conversion du paramètre d’entrée en instance de classe Java échoue.
Exemple :
<xs:annotation>
<xs:appinfo>
<fmt:string>
<fmt:ConversionErrorMessage>
Please enter a valid e-mail address
</fmt:ConversionErrorMessage>
</fmt:string>
</xs:appinfo>
</xs:annotation>
</xs:element>
Message d'erreur associé à une facette
Facette XML Schema (mdm:defaultErrorMessage)
Le message d’erreur est indiqué par l’élément <mdm:defaultErrorMessage> dans annotation/documentation sous la définition de la facette.
Exemple :
<xs:simpleType>
<xs:restriction base ="xs:string">
<!—facet is not localized, error message is also not localized-->
<xs:minInclusive value ="01000" mdm:index ="1">
<xs:annotation>
<xs:documentation>
<mdm:defaultErrorMessage>
Postal code not valid
</mdm:defaultErrorMessage>
</xs:documentation>
</xs:annotation>
</xs:minInclusive>
</xs:restriction>
</xs:simpleType>
</xs:element>
Facette XML Schema énumération (mdm:enumerationErrorMessage)
Le message d’erreur est indiqué par l’élément <mdm:enumerationErrorMessage> dans annotation/documentation sous la définition de l’élément.
Exemple :
<xs:annotation>
<xs:documentation>
<mdm:enumerationErrorMessage>
Please indicate your gender.
</mdm:enumerationErrorMessage>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base ="xs:string">
<xs:enumeration value ="0" mdm:label ="male"/>
<xs:enumeration value ="1" mdm:label ="female"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
Facette webMethods MDM (mdm:defaultErrorMessage)
Le message d’erreur est indiqué par l’élément <mdm:defaultErrorMessage> sous la définition de la facette (qui est définie dans annotation/appInfo/otherFacets).
Exemple:
<xs:annotation>
<xs:appinfo>
<mdm:otherFacets>
<mdm:minInclusive path ="../priceMin"/>
<mdm:defaultErrorMessage >
The amount
{1}' is too low.
</mdm:defaultErrorMessage>
</mdm:minInclusive>
</mdm:otherFacets>
</xs:appinfo>
</xs:annotation>
</xs:element>
Home > Models