Categories
- All Categories
- Oracle Analytics Learning Hub
- 19 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 232 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.9K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 87 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Table name to capture reverse termination date & its details for reverse terminated employees
 
            Summary
Table name to capture reverse termination date & its details for reverse terminated employees
Content
Hi All,
In which table I can find the reverse terminated date & its details for the reverse terminated employee? Please help me with the table name or sample query.
Thanks
Nirmal kumar
Comments
- 
            You can try to check in audit table - "per_all_asisgnments_m_" . Also give a try with below SQL and this might help! select a.action_type_id, a.action_code, o.* from Per_Action_Occurrences o, per_actions_b a Where O.Parent_Entity_Key_Id = <PersonID> and o.parent_entity_type = 'PERSON' and o.action_id = a.action_id and a.action_type_id = <TerminationActionTypeID> and not exists (select null from per_all_assignments_m asg where asg.person_id = O.Parent_Entity_Key_Id and asg.action_occurrence_id = o.action_occurrence_id) order by o.creation_date 0