DBA Data[Home] [Help]

APPS.FND_CONC dependencies on FND_DCP

Line 819: -- Bug 2093806: use fnd_dcp.check_process_status_by_ids

815: where concurrent_process_id = pid;
816:
817: --
818: -- Lock PMON method
819: -- Bug 2093806: use fnd_dcp.check_process_status_by_ids
820: --
821: fnd_dcp.check_process_status_by_ids(
822: appl_id, manager_id, pid, result, alive);
823:

Line 821: fnd_dcp.check_process_status_by_ids(

817: --
818: -- Lock PMON method
819: -- Bug 2093806: use fnd_dcp.check_process_status_by_ids
820: --
821: fnd_dcp.check_process_status_by_ids(
822: appl_id, manager_id, pid, result, alive);
823:
824: if (alive = 0) then
825: -- got the lock handle for the process, process not alive.

Line 834: -- message that was set in the dictionary by fnd_dcp.

830: else
831: -- alive is 1 and result is 3, 5, or null. This implies a
832: -- problem in call to DMBS_LOCK. In order to continue, we assume
833: -- manager is alive, since we did not get the lock. There is a
834: -- message that was set in the dictionary by fnd_dcp.
835: return TRUE;
836: end if;
837:
838: exception