DBA Data[Home] [Help]

APPS.HR_UTILITY dependencies on V$PROCESS

Line 464: 'process id' is the PID column from v$process

460: defaults to PIPE.
461: Otherwise it is set in the following way
462:
463: PID - PID.
464: 'process id' is the PID column from v$process
465:
466: REQID - REQID.
467: 'conc. request id' is taken from the CONC_REQUEST_ID profile option
468:

Line 508: -- Retrieves the current process id from V$PROCESS

504: return( fnd_number.canonical_to_number(l_retval) ) ;
505:
506: end get_web_id ;
507:
508: -- Retrieves the current process id from V$PROCESS
509: function get_process_id return number is
510: l_retval number := null ;
511: cursor getpid is
512: select p.pid

Line 513: from v$process p,

509: function get_process_id return number is
510: l_retval number := null ;
511: cursor getpid is
512: select p.pid
513: from v$process p,
514: v$session s
515: where s.paddr = p.addr
516: and s.audsid = userenv('sessionid');
517: begin