DBA Data[Home] [Help]

APPS.HR_MASS_MOVE_API dependencies on HR_API_BATCH_MESSAGE_LINES

Line 2493: select hr_api_batch_message_lines_s.nextval

2489: l_pos_vac_not_moved_warning boolean;
2490:
2491: --
2492: cursor csr_batch_run_number is
2493: select hr_api_batch_message_lines_s.nextval
2494: from dual;
2495: --
2496: cursor csr_lock_per_mass_moves is
2497: select null

Line 2655: from hr_api_batch_message_lines

2651: -- Check for errors at the end of the mass move
2652: --
2653: cursor csr_chk_errors is
2654: select 'Y'
2655: from hr_api_batch_message_lines
2656: where batch_run_number = l_batch_run_number
2657: and status = 'F';
2658: --
2659: cursor csr_chk_warnings is

Line 2661: from hr_api_batch_message_lines

2657: and status = 'F';
2658: --
2659: cursor csr_chk_warnings is
2660: select 'Y'
2661: from hr_api_batch_message_lines
2662: where batch_run_number = l_batch_run_number
2663: and status = 'S';
2664: --
2665: begin