DBA Data[Home] [Help]

APPS.IGC_UPGRADE_DATA_R12 dependencies on FND_CONCURRENT_REQUESTS

Line 2031: FROM fnd_concurrent_requests

2027: FUNCTION check_request(p_request_id IN NUMBER) RETURN NUMBER IS
2028: CURSOR c_req(c_request_id IN NUMBER) IS
2029: SELECT parent_request_id,
2030: request_id,level
2031: FROM fnd_concurrent_requests
2032: CONNECT BY PRIOR request_id = parent_request_id
2033: START with request_id = c_request_id
2034: order by request_id;
2035: l_other_request NUMBER;