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 1333: PAY_RECORDED_REQUESTS_PKG.get_recorded_date_no_ins('CC_ASG',l_date,l_assignment_id);

1329: --
1330: -- As highlighted in bug 3146928
1331: -- This function is used in a view and thus no dml can occur, so call new proc
1332: --
1333: PAY_RECORDED_REQUESTS_PKG.get_recorded_date_no_ins('CC_ASG',l_date,l_assignment_id);
1334: hr_utility.trace('-last CC run date is '||l_date);
1335:
1336: --
1337: -- bug 3265814

Line 1933: pay_recorded_requests_pkg.get_recorded_date(

1929: l_grp_event_valid varchar2(5);
1930:
1931: begin
1932:
1933: pay_recorded_requests_pkg.get_recorded_date(
1934: p_process => p_process,
1935: p_recorded_date => l_cca_date,
1936: p_attribute1 => p_asg_id);
1937:

Line 2029: pay_recorded_requests_pkg.set_recorded_date(

2025: new_cc_date :=p_sysdate;
2026:
2027: hr_utility.trace('Updating pay_recorded_requests, process and recorded_date : '|| p_process || ' ' || new_cc_date);
2028:
2029: pay_recorded_requests_pkg.set_recorded_date(
2030: p_process => p_process,
2031: p_recorded_date => new_cc_date,
2032: p_recorded_date_o => old_cc_date,
2033: p_attribute1 => p_asg_id);