Skip to content

Invoice validation pending standby

One of the request running long time with pending standby. so it will conflict with some request

Solution :

select * from fnd_concurrent_requests where concurrent_program_id in
(SELECT p.concurrent_program_id FROM FND_CONCURRENT_PROGRAM_SERIAL s, fnd_concurrent_programs_tl p WHERE
(s.to_run_application_id in (select application_id from fnd_concurrent_programs_tl where user_concurrent_program_name=’Invoice Validation’))
and
(s.to_run_concurrent_program_id in (select concurrent_program_id from fnd_concurrent_programs_tl where user_concurrent_program_name=’Invoice Validation’))
and s.running_concurrent_program_id=p.concurrent_program_id)
and phase_code <> ‘C’;

Kill the blocking concurrent request. then it will work

update fnd_concurrent_requests set phase_code=’C’ , status_code=’X’ where request_id=’10358051′;

No comments yet

Leave a comment