Protected by Copyscape Web Copyright Protection Software

Pages

Search This Blog

Friday, March 14, 2014

Query To Find OPP Log File And It's Path in Oracle Applications R12

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.

No comments:

Post a Comment