Basic operator view policies

Basic operator view policies consist of the following elements:

  • Variable assignments that specify the position of the event panel and action panel.
  • Variable assignments that specify which policies are displayed in the action panel.
  • One GetByFilter or GetByKey statement for each information group.

When you create a basic operator view using the GUI, the GUI automatically creates a corresponding policy that contains all the required content. If necessary, you can manually edit the policy after it is created. For more information about editing operator view policies, see Editing the operator view policy.

The following example shows a policy that works with a basic operator view:

// This policy generated by Impact Operator View.
// Modify at your own risk!
// Once modified, this policy may no longer be configurable
// through the Impact Operator View GUI.
			
// LAYOUT PANEL
EventPos="top";
ActionPos="top";

// ACTION PANEL
ActionPanel0="Policy_03";
ActionPanel1="Policy_02";
ActionPanel2="Policy_01";

// INFO PANEL
InfoPanelAdmins=GetByFilter("ADMIN","1=1",null);
InfoPanelAdmins_style="table";

In this example, you use the action panel in the operator view to trigger three policies, named Policy_01, Policy_02 and Policy_03. It also contains an information group named InfoPanelAdmins that displays the data items that are returned from the ADMIN data type by a call to the GetByFilter function.