Oracle apps query to find incompatible programs blocking a concurrent request
Oracle EBS incompatible concurrent requests sql query
Concurrent program incompatibility query for pending standby requests
Run the below query if you see any concurrent program in pending standby status for long time.
The below query returns the incompatible program requests running due to which the request is in standby status.
SELECT fsrn.program, fsrn.request_id, -- fstr.concurrent_program_id, fstr.program incompatible_program, fstr.request_id incompatible_prog_req_id, (SELECT meaning FROM apps.fnd_lookups WHERE lookup_type = 'CP_PHASE_CODE' AND lookup_code = fstr.phase_code) phase, (SELECT meaning FROM apps.fnd_lookups WHERE lookup_type = 'CP_STATUS_CODE' AND lookup_code = fstr.status_code) status, ROUND ((fstr.actual_completion_date - fstr.actual_start_date) * 24 * 60, 2) time_taken_minutes, DECODE (fstr.actual_completion_date, NULL, ROUND ((SYSDATE - fstr.actual_start_date) * 24 * 60, 2)) running_for_minutes, fstr.actual_start_date, fstr.actual_completion_date FROM apps.fnd_concurrent_program_serial fcs, apps.fnd_conc_req_summary_v fstr, apps.fnd_conc_req_summary_v fsrn WHERE 1 = 1 -- running_concurrent_program_id = 123123 AND fsrn.request_id = 123456 --Request id which is in standby status --AND fsrn.program = '' --Or concurrent program name which is in standby status AND to_run_concurrent_program_id = fstr.concurrent_program_id AND running_concurrent_program_id = fsrn.concurrent_program_id AND (fstr.actual_start_date BETWEEN fsrn.requested_start_date AND fsrn.actual_start_date OR fstr.actual_completion_date BETWEEN fsrn.requested_start_date AND fsrn.actual_start_date)-- AND fsrn.phase_code = 'P' --Pending -- AND fstr.status_code != 'D' -- not cancelled ORDER BY fstr.actual_start_date;Related posts:
- Register a test concurrent program from backend in Oracle EBS
- Supervisor Hierarchy and Approval Limits in Oracle EBS R12
- Query to find vacation rules in Oracle R12
- View java class source in oracle database
- Load Java source code in oracle database
- Query to find all APIs of Oracle Apps modules
- OAF customizations queries
- Oracle apps list of concurrent programs in a Request Set
- Query to get Organization Hierarchy in Oracle apps
- Oracle apps query to find incompatible programs blocking a concurrent request
- Form function attached to which responsibility and user
- Query to find the responsibility attached to user in oracle apps
- How to enable debug log in Oracle apps EBS
- How to add AME role and responsibility to user
- Oracle form attached to which responsibility
- SQL query to get MIME type for file extension
- Query to get concurrent program and executable details
- Query to get responsibility level profile option values
- Query to validate migration of XML/BI Publisher Template and Data Definition
- Query to get details of XML/BI Publisher Template and Data Definition
- Query to get Site level and Organization level Profile Option Value
- PL-SQL code to reset application user password
- PL-SQL Procedure to send email with attachment
- PL-SQL to delete Concurrent Program and Executable
- Query to get the details of the lock in the database
- PL-SQL code to delete XML/BI Publisher template and Data Definition
- Query to find Form Personalization
- Query to find profile option values
- Query to get details of concurrent program parameters
- PL-SQL Code to find Menu Hierarchy of a responsibility
- Query to find details of Flex value sets
- Query to find concurrent program Responsibility and Request Group
- Concurrent program SQL statement currently running in background
- Query to find scheduled concurrent programs
- Query to kill database session for a concurrent request
- Query to get DFF (Descriptive Flex Field) Details