DBA Data[Home] [Help]

APPS.GMF_ALLOC_PROC dependencies on FND_CONCURRENT

Line 134: FROM fnd_concurrent_requests

130:
131: BEGIN
132: SELECT COUNT(1)
133: INTO l_prev_req_count
134: FROM fnd_concurrent_requests
135: WHERE concurrent_program_id IN (SELECT a.concurrent_program_id
136: FROM fnd_concurrent_programs a,
137: fnd_application b
138: WHERE a.application_id = b.application_id

Line 136: FROM fnd_concurrent_programs a,

132: SELECT COUNT(1)
133: INTO l_prev_req_count
134: FROM fnd_concurrent_requests
135: WHERE concurrent_program_id IN (SELECT a.concurrent_program_id
136: FROM fnd_concurrent_programs a,
137: fnd_application b
138: WHERE a.application_id = b.application_id
139: AND b.application_short_name = 'GMF'
140: AND a.concurrent_program_name = 'COSTALOC')

Line 220: x_retval := fnd_concurrent.set_completion_status('ERROR',NULL);

216: /*The procedure below allocates the cost.*/
217: cost_allocate(v_from_alloc_code,v_to_alloc_code,x_refresh_int,x_status);
218:
219: IF (x_status < 0) THEN
220: x_retval := fnd_concurrent.set_completion_status('ERROR',NULL);
221: END IF;
222: COMMIT;
223:
224: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

Line 259: x_retval := fnd_concurrent.set_completion_status('ERROR',NULL);

255:
256: PROCEDURE end_proc (errbuf varchar2) IS
257: x_retval boolean;
258: BEGIN
259: x_retval := fnd_concurrent.set_completion_status('ERROR',NULL);
260: /* INVCONV sschinch */
261: -- Update the status to not running
262: /* UPDATE cm_alpr_ctl
263: SET running_ind = 0,