Integrate > Micro Focus UCMDB > Using the ServiceManagerAdapter9.41 Adapter > Tailoring the Integration > Integration Tailoring Options > How to Disable the UCMDB ID Pushback Feature for a Specific CI Type

How to Disable the UCMDB ID Pushback Feature for a Specific CI Type

You may want to disable the pushback feature for certain UCMDB CI types, for example, UCMDB classes that are mapped to a sub-item type (IP Address, CPU, etc.) in Service Manager. Doing so can aviod unnecessary system overload.

To disable the pushback feature for a UCMDB CI type (class), use this format:

<idPushbackConfiguration ucmdbClassName="<ucmdbClassName>" idPushbackEnable="false"/>

Where, <ucmdbClassName> is the name of the UCMDB CI type.

Here are the out-of-the-box settings in the ServiceDeskConfiguration.xml file:

<idPushbackConfigurations>
	<idPushbackConfiguration ucmdbClassName="interface" idPushbackEnable="false"/>
	<idPushbackConfiguration ucmdbClassName="cpu" idPushbackEnable="false"/>
	<idPushbackConfiguration ucmdbClassName="disk_device" idPushbackEnable="false"/>
	<idPushbackConfiguration ucmdbClassName="file_system" idPushbackEnable="false"/>
	<idPushbackConfiguration ucmdbClassName="ip_address" idPushbackEnable="false"/>
</idPushbackConfigurations>

To enable the pushback feature for a CI type, set idPushbackEnable="true" for it.