DBA Data[Home] [Help]

APPS.XDP_CONTROLLER_CORE dependencies on FND_PROFILE

Line 646: if fnd_profile.defined('XDP_CTRL_WAIT_TO_KILL_MINUTES') then

642: Function GetCtrlWaitToKillMins return number
643: is
644: l_ProfileValue varchar2(40);
645: begin
646: if fnd_profile.defined('XDP_CTRL_WAIT_TO_KILL_MINUTES') then
647: fnd_profile.get('XDP_CTRL_WAIT_TO_KILL_MINUTES', l_ProfileValue);
648: if to_number(l_ProfileValue) <= 0 then
649: l_ProfileValue := '2';
650: end if;

Line 647: fnd_profile.get('XDP_CTRL_WAIT_TO_KILL_MINUTES', l_ProfileValue);

643: is
644: l_ProfileValue varchar2(40);
645: begin
646: if fnd_profile.defined('XDP_CTRL_WAIT_TO_KILL_MINUTES') then
647: fnd_profile.get('XDP_CTRL_WAIT_TO_KILL_MINUTES', l_ProfileValue);
648: if to_number(l_ProfileValue) <= 0 then
649: l_ProfileValue := '2';
650: end if;
651: else