DBA Data[Home] [Help]

APPS.PAY_CC_PROCESS_UTILS dependencies on PAY_RECORDED_REQUESTS_PKG

Line 99: pay_recorded_requests_pkg.get_recorded_date(

95:
96: -->>> PHASE 2: Create action records
97: for asgrec in c_actions(p_pactid,l_payroll_id,p_stperson, p_endperson ) loop
98: -->>> PHASE 3: Get the date the last time the CC process was run for this payroll.
99: pay_recorded_requests_pkg.get_recorded_date(
100: p_process => 'CC_ASG',
101: p_recorded_date => l_last_run_date,
102: p_attribute1 => asgrec.assignment_id
103: );

Line 422: pay_recorded_requests_pkg.get_recorded_date(

418:
419: -- We need to tell the Interpreter we are only interested in events between
420: -- the last time CC was run, and the time this run was begun
421:
422: pay_recorded_requests_pkg.get_recorded_date(
423: p_process => 'CC_ASG',
424: p_recorded_date => l_min_date,
425: p_attribute1 => l_assignment_id);
426:

Line 620: pay_recorded_requests_pkg.set_recorded_date(

616: p_grp_multi_thread => TRUE
617: );
618: end loop; --end of runrec
619:
620: pay_recorded_requests_pkg.set_recorded_date(
621: p_process => 'CC_ASG',
622: p_recorded_date => l_run_date,
623: p_recorded_date_o => l_min_date,
624: p_attribute1 => l_assignment_id);

Line 1385: PAY_RECORDED_REQUESTS_PKG.get_recorded_date_no_ins('CC_ASG',l_date,l_assignment_id);

1381: --
1382: -- As highlighted in bug 3146928
1383: -- This function is used in a view and thus no dml can occur, so call new proc
1384: --
1385: PAY_RECORDED_REQUESTS_PKG.get_recorded_date_no_ins('CC_ASG',l_date,l_assignment_id);
1386: hr_utility.trace('-last CC run date is '||l_date);
1387:
1388: --
1389: -- bug 3265814

Line 2008: pay_recorded_requests_pkg.get_recorded_date(

2004: l_grp_event_valid varchar2(5);
2005:
2006: begin
2007:
2008: pay_recorded_requests_pkg.get_recorded_date(
2009: p_process => p_process,
2010: p_recorded_date => l_cca_date,
2011: p_attribute1 => p_asg_id);
2012:

Line 2104: pay_recorded_requests_pkg.set_recorded_date(

2100: new_cc_date :=p_sysdate;
2101:
2102: hr_utility.trace('Updating pay_recorded_requests, process and recorded_date : '|| p_process || ' ' || new_cc_date);
2103:
2104: pay_recorded_requests_pkg.set_recorded_date(
2105: p_process => p_process,
2106: p_recorded_date => new_cc_date,
2107: p_recorded_date_o => old_cc_date,
2108: p_attribute1 => p_asg_id);