DBA Data[Home] [Help]

APPS.FND_CONC dependencies on FND_USER

Line 441: -- Check the user in FND_USER

437:
438: else
439: -- Here is a special case. If the user is invalid or end-dated,
440: -- this request will never be released by the CRM.
441: -- Check the user in FND_USER
442: select count(*)
443: into cnt
444: from fnd_user fu, fnd_concurrent_requests fcr
445: where fcr.request_id = P_REQUEST_ID

Line 444: from fnd_user fu, fnd_concurrent_requests fcr

440: -- this request will never be released by the CRM.
441: -- Check the user in FND_USER
442: select count(*)
443: into cnt
444: from fnd_user fu, fnd_concurrent_requests fcr
445: where fcr.request_id = P_REQUEST_ID
446: and fu.user_id = fcr.requested_by
447: and (fu.end_date is null or fu.end_date > sysdate);
448:

Line 722: fnd_user U1, fnd_user U2,

718: P_PROGRAM, P_QUEUE_CONTROL_FLAG,
719: P_QUEUE_METHOD_CODE, P_RUN_ALONE_FLAG,
720: P_SINGLE_THREAD_FLAG, P_REQLIMIT_FLAG, P_CD_ID
721: from fnd_concurrent_requests R, fnd_concurrent_programs_vl CP,
722: fnd_user U1, fnd_user U2,
723: fnd_application_vl FA
724: where R.request_id = diagnose.request_id
725: and R.program_application_id = FA.application_id
726: and R.program_application_id = CP.application_id (+)