Concurrent Program Tracing in R12: Source
Concurrent Program Tracing in R12: Source
info
Source http://appsdba.info
CASE 3: Enabling the trace for a concurrent request for which you donot have
privileges to run the concurrent Request.
1) Ask the person who is privileged to run the concurrent program and get the
request id xxxxx
2) Get the oracle_process_id for that concurrent request.
SQL>select request_id,oracle_process_id from fnd_concurrent_requests where
request_id in (xxxxxxx);
3) Now get the session details ( SID and Serial ) using value obtained from step 2
col SID/SERIAL format a10
col username format a15
col osuser format a15
col program format a40
select s.sid || , || s.serial# SID/SERIAL
, s.username
, s.osuser
, s.status
, p.spid OS PID
, s.inst_id
, s.module
from sys.gv_$session s
, sys.gv_$process p
Where s.paddr = p.addr
and s.inst_id = p.inst_id
and p.spid=&value_from_step2
order by to_number(p.spid);
5) Collect the trace from udump location and investigate the issue.
We can follow the Metalink Note: 296559.1 to know more about tracing.
2