DBA Data[Home] [Help]

APPS.FND_AMP_PRIVATE dependencies on FND_CONC_REQUEST_PKG

Line 69: if (fnd_conc_request_pkg.lock_parent (parent_request_id)) then

65: if (is_sub_request = 'Y') then
66: -- Lock the parent so that no other process can
67: -- perform the same actions to follow (including CM).
68: -- If parent status is W (Paused), no need to update.
69: if (fnd_conc_request_pkg.lock_parent (parent_request_id)) then
70: -- If request to delete is the last pending child,
71: -- set paused parent request to pending for restart
72: -- Need to maintain the parent-child order of
73: -- request locking, so update parent first before

Line 79: if (fnd_conc_request_pkg.restart_parent (

75: -- Status codes between 'I' and 'T' are pending or
76: -- running. They include 'I' Pending Normal,
77: -- 'Q' Pending Standby, 'R' Running Normal, and
78: -- 'T' Running Terminating.
79: if (fnd_conc_request_pkg.restart_parent (
80: request_id,
81: parent_request_id,
82: fnd_global.user_id)) then
83: fnd_message.set_name (

Line 94: fnd_conc_request_pkg.delete_children (

90: if (has_sub_request = 'Y') then
91: -- Update status of children to terminating,
92: -- terminated or cancelled unless they are already
93: -- complete or terminating.
94: fnd_conc_request_pkg.delete_children (
95: request_id,
96: fnd_global.user_id);
97: end if;
98: end cancel_subrequests;

Line 210: fnd_conc_request_pkg.get_phase_status(pcode, scode, hold, enbld,

206: rid in number) is
207:
208: begin
209:
210: fnd_conc_request_pkg.get_phase_status(pcode, scode, hold, enbld,
211: null, stdate, rid,
212: req_phase, req_status);
213:
214: end get_phase_and_status;