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 651: fnd_concurrent_requests fcr

647: CURSOR initiator_name_cur IS
648: SELECT ppf.full_name
649: FROM per_people_f ppf,
650: fnd_user fu,
651: fnd_concurrent_requests fcr
652: WHERE fu.user_id = fcr.requested_by
653: AND fu.employee_id = ppf.person_id
654: AND fcr.request_id = p_request_id;
655: