DBA Data[Home] [Help]

APPS.HRI_BPL_FAST_FORMULA dependencies on FND_CONC_GLOBAL

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

339: --
340: dbg('Tell process to wait for sub process to compile fastformula '||
341: p_fast_formula_name||'.');
342: --
343: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
344: request_data=> TO_CHAR(l_request_id));
345: --
346: dbg('Waiting for sub process to compile fastformula '||
347: p_fast_formula_name||'.');

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

380: --
381: FUNCTION check_if_re_entered RETURN BOOLEAN
382: IS
383: --
384: -- Used to store the return value of fnd_conc_global.request_data. If
385: -- it is non null then this indicates that the process has returned
386: -- from a paused state.
387: --
388: l_request_data VARCHAR2(240);

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

403: l_success BOOLEAN;
404: --
405: BEGIN
406: --
407: -- Call fnd_conc_global.request_data, to see if this program is re-entering
408: -- after being paused.
409: --
410: l_request_data := fnd_conc_global.request_data;
411: --

Line 410: l_request_data := fnd_conc_global.request_data;

406: --
407: -- Call fnd_conc_global.request_data, to see if this program is re-entering
408: -- after being paused.
409: --
410: l_request_data := fnd_conc_global.request_data;
411: --
412: -- NOTE!!! THE FOLLOWING CODE WITHIN THE CONDITION:
413: -- 'IF l_request_data IS NOT NULL', is only run after re-entering the
414: -- package when sub processes have completed.