DBA Data[Home] [Help]

APPS.FND_CONC dependencies on FND_DCP

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

894: where concurrent_process_id = pid;
895:
896: --
897: -- Lock PMON method
898: -- Bug 2093806: use fnd_dcp.check_process_status_by_ids
899: --
900: fnd_dcp.check_process_status_by_ids(
901: appl_id, manager_id, pid, result, alive);
902:

Line 900: fnd_dcp.check_process_status_by_ids(

896: --
897: -- Lock PMON method
898: -- Bug 2093806: use fnd_dcp.check_process_status_by_ids
899: --
900: fnd_dcp.check_process_status_by_ids(
901: appl_id, manager_id, pid, result, alive);
902:
903: if (alive = 0) then
904: -- got the lock handle for the process, process not alive.

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

909: else
910: -- alive is 1 and result is 3, 5, or null. This implies a
911: -- problem in call to DMBS_LOCK. In order to continue, we assume
912: -- manager is alive, since we did not get the lock. There is a
913: -- message that was set in the dictionary by fnd_dcp.
914: return TRUE;
915: end if;
916:
917: exception