DBA Data[Home] [Help]

APPS.FND_CONC dependencies on FND_CONCURRENT_REQUESTS

Line 148: fnd_concurrent_requests r,

144: avg_hrs,
145: avg_days,
146: expctd_finish
147: from fnd_conc_stat_summary,
148: fnd_concurrent_requests r,
149: fnd_concurrent_programs p
150: where request_id = reqid
151: and program_application_id = application_id
152: and p.concurrent_program_id = r.concurrent_program_id

Line 306: from fnd_concurrent_requests

302:
303: -- check to see if it has running children
304: select count(*)
305: into child_count
306: from fnd_concurrent_requests
307: where parent_request_id = P_REQUEST_ID
308: and phase_code in (PHASE_PENDING, PHASE_RUNNING);
309:
310: if (child_count < 1) then

Line 378: from fnd_concurrent_requests fcr, fnd_concurrent_programs fcp

374: begin
375: /* changed query for BUG#5007915 SQLID#14602696 */
376: select request_id
377: into ra_reqid
378: from fnd_concurrent_requests fcr, fnd_concurrent_programs fcp
379: where fcp.run_alone_flag = 'Y'
380: and fcp.concurrent_program_id = fcr.concurrent_program_id
381: and fcp.application_id = fcr.program_application_id
382: and fcr.phase_code = 'R'

Line 494: from fnd_user fu, fnd_concurrent_requests fcr

490: -- this request will never be released by the CRM.
491: -- Check the user in FND_USER
492: select count(*)
493: into cnt
494: from fnd_user fu, fnd_concurrent_requests fcr
495: where fcr.request_id = P_REQUEST_ID
496: and fu.user_id = fcr.requested_by
497: and (fu.end_date is null or fu.end_date > sysdate);
498:

Line 532: from fnd_concurrent_requests

528:
529: -- check for a running or pending parent request
530: select count(*)
531: into parent_reqid
532: from fnd_concurrent_requests
533: where request_id = P_PARENT_REQUEST_ID
534: and phase_code in ('P', 'R');
535:
536:

Line 800: from fnd_concurrent_requests R, fnd_concurrent_programs_vl CP,

796: P_ENABLED, P_CONTROLLING_MANAGER,
797: P_PROGRAM, P_QUEUE_CONTROL_FLAG,
798: P_QUEUE_METHOD_CODE, P_RUN_ALONE_FLAG,
799: P_SINGLE_THREAD_FLAG, P_REQLIMIT_FLAG, P_CD_ID, P_EDITION_NAME
800: from fnd_concurrent_requests R, fnd_concurrent_programs_vl CP,
801: fnd_user U1, fnd_user U2,
802: fnd_application_vl FA
803: where R.request_id = diagnose.request_id
804: and R.program_application_id = FA.application_id

Line 1157: update fnd_concurrent_requests

1153:
1154: fnd_message.set_name ('FND', 'CONC-CANCELLED PATCH REQUEST');
1155: msg := fnd_message.get;
1156:
1157: update fnd_concurrent_requests
1158: set phase_code = 'C',
1159: status_code = 'D',
1160: completion_text = msg,
1161: last_update_date = sysdate,