FolderItem

Applies To: Operations Manager 2007 R2, System Center Operations Manager 2007

Represents the association between a view element and its parent folder.

Schema Hierarchy

ManagementPack
  Presentation
    FolderItems
      FolderItem

Syntax

<FolderItem ElementID="ViewID" Folder="FolderID"></FolderItem>

Attributes and Elements

The following sections describe attributes, child elements, and the parent element of the FolderItem element.

Attributes

Attribute Description

ElementID

Required attribute. The View element that is to be the child of the folder specified in the Folder attribute.

Folder

Required attribute. The ID of the Folder element that is to be the parent of the View element specified in the ElementID attribute.

Child Elements

None.

Parent Elements

Element Description

FolderItems

Contains all folder item definitions to be displayed in the Operations console.

Remarks

FolderItem elements are used to specify under which folder a view will be displayed in the Operations console.

Example

The following XML sample illustrates how to associate a View element with a Folder element by using the FolderItem definition. In this case, the System.Views.InventoryView view will be placed under the top-level view folder in the Operations console.

<View ID="System.Views.InventoryView" Accessibility="Public" Enabled="true" Target="System!System.Computer" TypeID="SC!Microsoft.SystemCenter.InventoryViewType" Visible="true">
   <Category>Operations</Category>
</View>
…
<Folder ID="System.Views.ViewFolder.Root" Accessibility="Public" ParentFolder="SC!Microsoft.SystemCenter.Monitoring.ViewFolder.Root" />
…
<FolderItem ElementID="System.Views.InventoryView" Folder="System.Views.ViewFolder.Root" />

See Also

Reference

Folder
FolderItems
View
Views