DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_COMMON_SAVE_WEB dependencies on PAY_PEOPLE_GROUPS

Line 2037: ,p_pgp_rec out nocopy pay_people_groups%rowtype

2033: end get_asg_from_tt;
2034: --
2035: procedure get_pgp_from_tt
2036: (p_transaction_step_id in number
2037: ,p_pgp_rec out nocopy pay_people_groups%rowtype
2038: ) is
2039: /* this procedure gets all of the people group data from the transaction tables
2040: */
2041: begin

Line 2387: ,p_pgp_rec out nocopy pay_people_groups%rowtype)

2383: --
2384: end get_asg_from_asg;
2385: --
2386: procedure get_pgp_from_pgp(p_people_group_id in number
2387: ,p_pgp_rec out nocopy pay_people_groups%rowtype)
2388: is
2389: /* This procedure gets all of the People Group data from the online tables
2390: */
2391: --

Line 2394: from pay_people_groups

2390: */
2391: --
2392: cursor csr_get_pgp is
2393: select *
2394: from pay_people_groups
2395: where people_group_id=p_people_group_id;
2396: --
2397: begin
2398: if p_people_group_id is not null then