Extension point for defining kit enumerations.(c) SAP AG 2003-2006. All rights reserved. Defines a new enumeration.The enumeration id - must be prefixed with namespace e.g. com.sap.mypackage:id.The enumeration object.The enumeration id - must be prefixed with namespace e.g. com.sap.mypackage:id.The enumeration in string representation.The newly defined enumeration.<h2>Xml definition of enumeration</h2> <pre> &lt;CONFIGURE type=&quot;ENUMERATIONS&quot;&gt; ? &lt;HEADER&gt; ? &lt;PRAGMA&gt;# Pragmas section&lt;/PRAGMA&gt; ? &lt;SCRIPT&gt;# Code section. Place here functions\variables which you want to address from within the enumeration tags &lt;/SCRIPT&gt; &lt;/HEADER&gt; &lt;ENUMERATIONS&gt; + &lt;ENUMERATION id=&quot;com.sap.mypackage:enumerationId&quot;&gt; &lt;DATA type=&quot;string&quot;&gt; # The enumeration in string representation &lt;/DATA&gt; &lt;/ENUMERATION&gt; or: &lt;ENUMERATION id=&quot;com.sap.mypackage:enumerationId&quot;&gt; &lt;DATA type=&quot;object&quot;&gt; # The enumeration object The order of the items in the object here determins the order in the enumeration (see example) &lt;/DATA&gt; &lt;/ENUMERATION&gt; &lt;/ENUMERATIONS&gt; &lt;/CONFIGURE&gt; </pre> <h2>Example</h2> <pre> &lt;CONFIGURE type=&quot;ENUMERATIONS&quot;&gt; &lt;ENUMERATIONS&gt; &lt;ENUMERATION id=&quot;TEXT_FONTS&quot;&gt; &lt;DATA type=&quot;string&quot;&gt;A:Normal;B:Emphasized;C:Italic;D:Underline&lt;/DATA&gt; &lt;/ENUMERATION&gt; &lt;ENUMERATION id=&quot;BOOL&quot;&gt; &lt;DATA type=&quot;object&quot;&gt; &lt;a&gt;yes&lt;/a&gt; &lt;b&gt;No&lt;/b&gt; &lt;/DATA&gt; &lt;/ENUMERATION&gt; &lt;/ENUMERATIONS&gt; &lt;/CONFIGURE&gt; </pre> Returns a specified enumeration.The enumeration id.The requested enumeration object. Returns the complete enumerations table.Table of enumeration objects, indexed by enumeration id.Enumeration id's are stored in uppercase. Use <q ref="core.lib:Basic!UPPER">UPPER</q> macro to convert the enumeration's id to uppercase before using it as the index in this table. Removes a specified enumeration.The id of the enumeration to remove.