|
|
|
Employee Status and Student Status are Added into the Information Page of the FSUID Helpdesk
01/25/2008
The helpdesk web page is updated to display employee status and student status. On the Account Information page, there will be two rows called “Employee Status" and “Student Status" if a person has any value in employeeStatus and fsuEduStudentStatus.
On the “Employee Status” row, the value in the attribute employeeStatus will be displayed.
On the “Student Status” row, it will display as “Current Student” or “Tentative Student” if the fsuEduStudentStatus is “C” or “T”.
if ($employeeStatus ne ""){
&printRow("Employee Status", $employeeStatus, $fsuidAcct, ""); #e.g., “Active”, “Terminated”
}
if($fsuEduStudentStatus ne ""){
if($fsuEduStudentStatus eq "C"){
$stuVal="Current Student";
}elsif($fsuEduStudentStatus eq "T"){
$stuVal="Tentative Student";
}else{
$stuVal=$fsuEduStudentStatus;
}
&printRow("Student Status", $stuVal, $fsuidAcct, "");
}
--Dongmei
|