- 02-21-2011 #1
Junior Member
- Join Date
- 09 Feb 2011
- Posts
- 18
- Points
- 580
Employee Supervisor Table
Hi,
what table to check if employee's supervisor has been changed?
Is it posible to create an event alert to send email notification when there is a change in employee supervisor? any reference document?
Thanks
-
- 05-06-2011 #2
Junior Member
- Join Date
- 03 Mar 2011
- Posts
- 12
- Points
- 310
Re: Employee Supervisor Table
Hi,
I guess a trigger can be set up for the particular field ; so that whenver there is a change in value it triggers a notification e-mail to the interested parties for further action.
Thanks,
Amy
- 07-19-2011 #3
Junior Member
- Join Date
- 19 Jul 2011
- Posts
- 10
- Points
- 120
Re: Employee Supervisor Table
Per_all_assignments_f and the column name is supervisor_id that column = person_id in table per_all_people_f
- 07-19-2011 #4
Junior Member
- Join Date
- 19 Jul 2011
- Posts
- 10
- Points
- 120
Re: Employee Supervisor Table
and if you want keep tracing that happen on the SUPERVISOR changes enable the audit on PER_ALL_ASSIGNMENTS_F
- 03-11-2013 #5
Re: Employee Supervisor Table
Regards,
Bharat G.
- 03-13-2013 #6
Junior Member
- Join Date
- 04 Oct 2012
- Posts
- 1
- Points
- 50
Re: Employee Supervisor Table
Hi
Yes trigger can be written, But its not recommended because all hrms table is date track (i hope u understand Date track Modes in HR)
You can use this query below and change it to compare the supervisor change......... i have done this for grade changes.
select asg1.assignment_number,
case
when asg1.grade_id <> asg2.grade_id then
asg1.grade_id
else
null
end only_changed_grade
from per_all_assignments_f asg1,
per_all_assignments_f asg2
where asg1.assignment_id = asg2.assignment_id
--and asg1.person_id = 202
and asg1.grade_id is not null
and asg1.effective_start_date between to_date('01-MAR-2013') and to_date('31-MAR-2013')
and asg1.effective_start_date-1 between asg2.effective_start_date and asg2.effective_end_date
- 03-13-2013 #7
Re: Employee Supervisor Table
In how many scenarios does the query works? I mean when we assign new grade value to it or to update the existing value or changing the old value to empty?Regards,
Bharat G.
Other Solutions
-
how to find employee names per organization
By nestor in forum Oracle HRMS & PayrollReplies: 4Last Post: 03-11-2013, 10:41 AM -
How to stop administrators from terminating an employee who is a supervisor
By chester04 in forum Oracle HRMS & PayrollReplies: 5Last Post: 07-19-2011, 01:40 PM -
Add employee in expense report
By chester04 in forum Oracle SCM & ManufacturingReplies: 1Last Post: 05-24-2011, 05:46 AM -
Employee updation not happening in case of wrong employee ID assignment to Supplier
By bk_mathew in forum Oracle E-Business Suite & Oracle Fusion ApplicationsReplies: 3Last Post: 11-26-2010, 03:52 AM




