• Blog
    • Oracle EBS ERP
      • DBA
      • Developer
      • Application
    • Db2 Database
    • MySQL
  • About Me
  • Skills
  • Education
  • Employment
  • Contact

Fetch logfile and output file of concurrent program

  • Home
  • Fetch logfile and output file of concurrent program

Get log file & output file location of concurrent request with all the details.

SELECT DISTINCT fcp.user_concurrent_program_name,
                  fcp.concurrent_program_name,
                  fcr.request_id,
                  fcr.request_date,
                  flv.meaning status,
                  fcr.status_code,
                  fcr.completion_text,
                  fcr.logfile_name,
                  fcr.outfile_name,
                  fcr.argument_text
    FROM apps.fnd_concurrent_programs_vl fcp,
         apps.fnd_concurrent_requests fcr,
         apps.fnd_lookup_values flv
   WHERE     fcr.concurrent_program_id = fcp.concurrent_program_id
         AND TRUNC (fcr.last_update_date) = TRUNC (SYSDATE)
         AND flv.lookup_code = fcr.status_code
         AND flv.lookup_type = 'CP_STATUS_CODE'
         AND flv.language = 'US'
ORDER BY fcr.request_date, fcr.request_id DESC;
Tags
concurrent program, dba script, location of logfile, location of output file, Oracle ebs, oracle script, running concurrent request, sql script, status of concurrent request
Categories
  • Application
  • Db2 Database
  • DBA
  • Developer
  • MySQL
  • Oracle EBS ERP
o
  • Extract & restore single mysql table from backup of databaseSaturday - September 04, 2021
© 2019 KS is proudly powered by Kapil Savaliya.