[Home] [Help]
2487: l_pos_vac_not_moved_warning boolean;
2488:
2489: --
2490: cursor csr_batch_run_number is
2491: select hr_api_batch_message_lines_s.nextval
2492: from dual;
2493: --
2494: cursor csr_lock_per_mass_moves is
2495: select null
2649: -- Check for errors at the end of the mass move
2650: --
2651: cursor csr_chk_errors is
2652: select 'Y'
2653: from hr_api_batch_message_lines
2654: where batch_run_number = l_batch_run_number
2655: and status = 'F';
2656: --
2657: cursor csr_chk_warnings is
2655: and status = 'F';
2656: --
2657: cursor csr_chk_warnings is
2658: select 'Y'
2659: from hr_api_batch_message_lines
2660: where batch_run_number = l_batch_run_number
2661: and status = 'S';
2662: --
2663: begin