// ------- Action Construction -------
public EmployeeDetailAction() {
// Init Record Support Object
DBTable table = getDatabase().T_EMPLOYEES;
DBRecord record = new EmployeeRecord(this);
// create a support Object
recordSupport = new RecordActionSupport(this, table, record, SessionPersistence.Key);
}