DBA Data[Home] [Help]

APPS.HR_UPDATE_UTILITY dependencies on FND_CONCURRENT

Line 81: from fnd_concurrent_programs cp,

77: cursor csr_get_conc_req_status is
78: select cr.phase_code dev_phase,
79: cr.status_code dev_status,
80: cr.request_id request_id
81: from fnd_concurrent_programs cp,
82: fnd_concurrent_requests cr,
83: fnd_application a
84: where a.application_short_name = p_app_shortname
85: and a.application_id = cp.application_id

Line 82: fnd_concurrent_requests cr,

78: select cr.phase_code dev_phase,
79: cr.status_code dev_status,
80: cr.request_id request_id
81: from fnd_concurrent_programs cp,
82: fnd_concurrent_requests cr,
83: fnd_application a
84: where a.application_short_name = p_app_shortname
85: and a.application_id = cp.application_id
86: and cp.concurrent_program_name = 'PAY_GEN_UPG'

Line 144: l_return := fnd_concurrent.get_request_status(

140: **
141: ** First look to see if a request for this CP is waiting to run. If so
142: ** then don't submit another one.
143: */
144: l_return := fnd_concurrent.get_request_status(
145: request_id => l_request_id,
146: appl_shortname => p_app_shortname,
147: program => p_update_name,
148: phase => l_phase,