DBA Data[Home] [Help]

APPS.GCS_LEX_MAP_GL_APPLY_PKG dependencies on FND_CONC_GLOBAL

Line 56: req_data := fnd_conc_global.request_data;

52: req_data VARCHAR2(10); -- Used for child process control
53: BEGIN
54: -- Get the request data. If this is not the original run, then just
55: -- exit out successfully.
56: req_data := fnd_conc_global.request_data;
57: IF req_data IS NOT NULL THEN
58: return;
59: END IF;
60:

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

155: x_errbuf := FND_MESSAGE.get;
156: x_retcode := '2';
157: ELSE
158: -- Pause the parent so that the child can go through.
159: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
160: request_data => 'Y');
161: END IF;
162: END IF;
163: