DBA Data[Home] [Help]

APPS.HRI_OLTP_CONC_SUPH_MASTER dependencies on FND_CONC_GLOBAL

Line 16: -- Used to store the return value of fnd_conc_global.request_data. If

12: END dbg;
13:
14: FUNCTION get_stage RETURN VARCHAR2 IS
15:
16: -- Used to store the return value of fnd_conc_global.request_data. If
17: -- it is non null then this indicates that the process has returned
18: -- from a paused state.
19: l_request_data VARCHAR2(240);
20:

Line 46: -- Call fnd_conc_global.request_data, to see if this program is re-entering

42: AND fcr.program_application_id = fcp.application_id;
43:
44: BEGIN
45:
46: -- Call fnd_conc_global.request_data, to see if this program is re-entering
47: -- after being paused.
48: l_request_data := fnd_conc_global.request_data;
49:
50: -- Check whether a previous child request is completed

Line 48: l_request_data := fnd_conc_global.request_data;

44: BEGIN
45:
46: -- Call fnd_conc_global.request_data, to see if this program is re-entering
47: -- after being paused.
48: l_request_data := fnd_conc_global.request_data;
49:
50: -- Check whether a previous child request is completed
51: IF l_request_data IS NOT NULL THEN
52:

Line 116: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',

112: RAISE error_launching_thread;
113: END IF;
114:
115: -- Wait for process to complete
116: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
117: request_data=> TO_CHAR(l_request_id));
118:
119: END launch_process;
120: