DBA Data[Home] [Help]

APPS.FND_CP_OPP_REQ dependencies on FND_PROFILE

Line 350: fnd_profile.get('CONC_PP_INIT_DELAY', prof_buffer);

346: return;
347: end if;
348:
349: -- At this point at least one OPP service is still initializing, wait a little while for it...
350: fnd_profile.get('CONC_PP_INIT_DELAY', prof_buffer);
351: if prof_buffer is null then
352: sleeptime := DEFAULT_SLEEP;
353: else
354: sleeptime := to_number(prof_buffer);

Line 420: fnd_profile.get('CONC_PP_RESPONSE_TIMEOUT', prof_buffer);

416:
417:
418: fnd_cp_opp_ipc.send_request(groupid, cpid, reqid, '');
419:
420: fnd_profile.get('CONC_PP_RESPONSE_TIMEOUT', prof_buffer);
421: if prof_buffer is null then
422: timeout := TIMEOUT1;
423: else
424: timeout := to_number(prof_buffer);

Line 466: fnd_profile.get('CONC_PP_PROCESS_TIMEOUT', prof_buffer);

462: else
463: -- processing has started, wait some more
464:
465: prof_buffer := null;
466: fnd_profile.get('CONC_PP_PROCESS_TIMEOUT', prof_buffer);
467: if prof_buffer is null then
468: timeout := TIMEOUT2;
469: else
470: timeout := to_number(prof_buffer);