Purpose
This exit is used to set the Business Area and Project ID’s of the current user.
Applies To
Administration Methods
Signature
public void ucSetAreaProject(
Connection dbconn,
SesameSession session,
String areaId,
String projectId)
throws Exception { }
Notes
Example
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);
}