DBA Data[Home] [Help]

APPS.PER_HRWF_SYNCH dependencies on PER_ALL_PEOPLE_F

Line 95: -- per_all_people_f%rowtype and p_action(INSERT, DELETE, UPDATE).

91: -- Pre Conditions:
92: -- None.
93: --
94: -- In Arguments:
95: -- per_all_people_f%rowtype and p_action(INSERT, DELETE, UPDATE).
96: --
97: -- Post Success:
98: -- Processing continues.
99: -- If the status is CURRENT then the routine WF_LOCAL_SYNCH.propagate_user

Line 111: p_rec in per_all_people_f%rowtype,

107: --
108: -- {End Of Comments}
109: -- ----------------------------------------------------------------------------
110: procedure per_per_wf(
111: p_rec in per_all_people_f%rowtype,
112: p_action in varchar2);
113: --
114: --
115: -- ----------------------------------------------------------------------------

Line 259: (p_person_id per_all_people_f.person_id%type default null,

255: p_action in varchar2);
256: --
257:
258: Type srch_criteria_record is RECORD
259: (p_person_id per_all_people_f.person_id%type default null,
260: p_assignment_id per_all_assignments_f.assignment_id%type default null,
261: p_effective_start_date per_all_assignments_f.effective_start_date%type default null,
262: p_effective_end_date per_all_assignments_f.effective_end_date%type default null,
263: p_position_id per_all_assignments_f.position_id%type default null);

Line 269: p_in_person_id in per_all_people_f.person_id%type,

265:
266: Type srch_criteria is table of srch_criteria_record INDEX BY BINARY_INTEGER;
267:
268: procedure sych_user_pos_role (p_in_user_name in fnd_user.user_name%type,
269: p_in_person_id in per_all_people_f.person_id%type,
270: p_in_start_date in fnd_user.start_date%type,
271: p_in_exp_date in fnd_user.end_date%type) ;
272:
273: --