Server Administration > Automate Tasks and Calculate Data Using Event Triggers > Referencing Configuration Management Beans in Trigger Scripts
  
Referencing Configuration Management Beans in Trigger Scripts
First, you need to reference the applicable Beans you want to use in your script. Refer to the Event Trigger Java Documentation off the server homepage. Beans prefaced with si are configuration management Beans.
* 
You can get the name of a Bean by looking at the GetexposedName() method in the Event Trigger Java Documentation.
Once you know the Bean name, look up the Bean in the trigger script, for example:
var envBean = bsf.lookupBean(“siEnvironmentBean”);
Useful configuration management Beans include:
ScriptEnvironmentBean
Contains information about the environment in which the script is running.
ScriptServerBean
Contains information about the configuration management server.
ScriptCheckInArgumentsBean
Contains information about the member being checked in.
ScriptMemberBean
Contains information about a member.