DBA Data[Home] [Help]

APPS.PAY_EVENTS_WRAPPER dependencies on PER_ALL_ASSIGNMENTS_F

Line 63: supervisor_id per_all_assignments_f.supervisor_id%type,

59: --
60: -- Table of records to return the time periods, by supervisor, which need
61: -- refreshing
62: TYPE t_summary_refresh_tab_rec IS RECORD(
63: supervisor_id per_all_assignments_f.supervisor_id%type,
64: effective_start_date DATE,
65: effective_end_date DATE,
66: location_id per_all_assignments_f.location_id%type
67: );

Line 66: location_id per_all_assignments_f.location_id%type

62: TYPE t_summary_refresh_tab_rec IS RECORD(
63: supervisor_id per_all_assignments_f.supervisor_id%type,
64: effective_start_date DATE,
65: effective_end_date DATE,
66: location_id per_all_assignments_f.location_id%type
67: );
68: TYPE t_summary_refresh_tab_type IS
69: TABLE OF t_summary_refresh_tab_rec
70: INDEX BY BINARY_INTEGER;

Line 74: assignment_id per_all_assignments_f.assignment_id%TYPE,

70: INDEX BY BINARY_INTEGER;
71: --
72: -- Simple table to record a list of assignment ID and effective dates
73: TYPE t_assignment_id_tab_rec IS RECORD(
74: assignment_id per_all_assignments_f.assignment_id%TYPE,
75: element_entry_id pay_element_entries_f.element_entry_id%TYPE,
76: effective_start_date DATE,
77: effective_end_date DATE
78: );