DBA Data[Home] [Help]

APPS.PSP_XMLGEN dependencies on FND_CONCURRENT_REQUESTS

Line 31: fnd_concurrent_requests fcr

27:
28: CURSOR user_name_cur IS
29: SELECT user_name
30: FROM fnd_user fu,
31: fnd_concurrent_requests fcr
32: WHERE fu.user_id = fcr.requested_by
33: AND fcr.request_id = p_request_id;
34:
35: l_user_name fnd_user.user_name%TYPE;

Line 655: fnd_concurrent_requests fcr

651: CURSOR initiator_name_cur IS
652: SELECT ppf.full_name
653: FROM per_people_f ppf,
654: fnd_user fu,
655: fnd_concurrent_requests fcr
656: WHERE fu.user_id = fcr.requested_by
657: AND fu.employee_id = ppf.person_id
658: AND fcr.request_id = p_request_id;
659: