DBA Data[Home] [Help]

APPS.ARI_DB_UTILITIES dependencies on FND_CONCURRENT_REQUESTS

Line 972: from fnd_concurrent_requests fcr,

968:
969: /* Verify that the request belongs to this user */
970:
971: select 'Y' into l_valid_user
972: from fnd_concurrent_requests fcr,
973: fnd_concurrent_programs fcp
974: where fcr.request_id = p_request_id
975: and fcr.requested_by = p_user_id
976: and fcp.concurrent_program_id = fcr.concurrent_program_id

Line 983: from fnd_concurrent_requests

979: /* Get the request status */
980:
981: if (l_valid_user = 'Y') then
982: select status_code into l_status
983: from fnd_concurrent_requests
984: where request_id = p_request_id;
985: end if;
986:
987: p_status := l_status;