Skip to main content
Skip table of contents

Categories

[categories]

These settings are ignored in the "Create support case" HTML-based dialog. See Define input fields

When creating a support case, the user can avail of categories. An additional input field is displayed for this purpose. This field can be defined as a mandatory field if necessary.

Categories can also be freely defined. Each category can contain further subcategories. (See example)

deliveryType

An alternative transmission mode can be defined for each category and subcategory. (See example)

emailRecipients

Alternative email recipients (emailRecipients) can be defined for categories and subcategories (see example). This option is only available for MAPI and SMTP transmission modes.

displayName

The value entered here is displayed in the dialog.

Note

The displayName values in the example are resource Ids (recognizable by curly brackets). These resource Ids must be defined in the localization files. More information can be found in the Localization chapter.

value

Unique ID of the respective category.

addValueToSubject

To facilitate automatic categorization for the recipient of a support case, the selected category (value) can be inserted into the subject line. This option is only available if MAPI and SMTP transmission modes are used.

Allowed values:

ValueDescription

No [Standard]

This category is not inserted in the subject

Before

The defined value is inserted before the actual subject

After

The defined value is inserted after the actual subject

Example

XML
<configuration version="1.2.0">
  <applicationSettings>
 
    ...

	<!--  Categories -->
	<categories displayName="{Category}" isOptional="False">
		<category displayName="{Category.Software}" value="software" addValueToSubject="No">
			<subcategories>
				<subcategory displayName="{Category.Software.ApplicationA}" value="software">
					<emailRecipients>
						<emailRecipient sendType="To">1@company.com</emailRecipient>
						<emailRecipient sendType="Cc">2@company.com</emailRecipient>
						<emailRecipient sendType="Bcc">3@company.com</emailRecipient> 
					</emailRecipients>
				</subcategory>
				<subcategory displayName="{Category.Software.ApplicationB}" deliveryType="REST" value="software"/>
			</subcategories>
			<emailRecipients>
				<emailRecipient sendType="To">1@company.com</emailRecipient>
			</emailRecipients>
		</category>
		<catgory displayName="{Category.IT}" value="IT" addValueToSubject="After" />
	</categories>

    ...
 
  </applicationSettings>
</configuration>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.