SELECT request_id,
description
FROM fnd_concurrent_requests
WHERE NVL (request_type, 'X') = 'M'
CONNECT BY PRIOR parent_request_id = request_id
START WITH request_id = &RequestID;
description
FROM fnd_concurrent_requests
WHERE NVL (request_type, 'X') = 'M'
CONNECT BY PRIOR parent_request_id = request_id
START WITH request_id = &RequestID;