DBA Data[Home] [Help]

APPS.HR_UPDATE_UTILITY dependencies on FND_CONCURRENT

Line 82: from fnd_concurrent_programs cp,

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

Line 83: fnd_concurrent_requests cr,

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

Line 145: l_return := fnd_concurrent.get_request_status(

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