DBA Data[Home] [Help]

APPS.FND_CONCURRENT_BUSINESS_EVENT dependencies on FND_CONCURRENT_REQUESTS

Line 185: from fnd_concurrent_requests

181: return NFALSE;
182: end if;
183:
184: select count(*) into v_tempcount
185: from fnd_concurrent_requests
186: where request_id = p_request_id;
187:
188: if (v_tempcount <> 1) then
189: return NFALSE;

Line 202: from fnd_concurrent_requests

198: -- Find out if this event is enabled --
199: ----------------------------------------------------------
200: select program_application_id, concurrent_program_id
201: into v_program_application_id, v_concurrent_program_id
202: from fnd_concurrent_requests
203: where request_id = p_request_id;
204:
205: select business_event_map into v_event_map_info
206: from fnd_conc_prog_onsite_info

Line 224: from fnd_concurrent_requests

220: v_event_name := parse_event_name_from_number(p_event_number);
221:
222: select requested_by, program_application_id, concurrent_program_id, status_code, completion_text
223: into v_requested_by, v_program_application_id, v_concurrent_program_id, v_status_code, v_completion_text
224: from fnd_concurrent_requests
225: where request_id = p_request_id;
226:
227: ---------------------------------------------------
228: -- take care of nullable parameters --