SELECT fcpa.concurrent_request_id req_id, fcp.node_name, fcp.logfile_name
FROM fnd_conc_pp_actions fcpa, fnd_concurrent_processes fcp
WHERE fcpa.processor_id = fcp.concurrent_process_id
AND fcpa.action_type = 6
AND fcpa.concurrent_request_id = :P_REQUEST_ID;
Here give your request_id as input. Then it will give you Opp log file name as well as it's path in server.
FROM fnd_conc_pp_actions fcpa, fnd_concurrent_processes fcp
WHERE fcpa.processor_id = fcp.concurrent_process_id
AND fcpa.action_type = 6
AND fcpa.concurrent_request_id = :P_REQUEST_ID;
Here give your request_id as input. Then it will give you Opp log file name as well as it's path in server.
No comments:
Post a Comment