This exit is used to set the Business Area and Project ID's of the current user.
Administration Methods
public void ucSetAreaProject(
Connection dbconn,
SesameSession session,
String areaId,
String projectId)
throws Exception { }
public void ucSetAreaProject(
Connection con,
SesameSession session,
String areaId,
String projectId) throws Exception {
int newAreaIdInt = Integer.parseInt(areaId);
int newProjectIdInt = Integer.parseInt(projectId);
setAreaProjectRole(con, session, newAreaIdInt, newProjectIdInt);
}