DBA Data[Home] [Help]

APPS.XDP_APPLICATION dependencies on DBMS_LOCK

Line 659: DBMS_LOCK.SLEEP(l_Interval);

655: while (l_Tries <= l_MaxTries) loop
656:
657: if (l_Tries > 1) then
658: FND_FILE.put_line(FND_FILE.log, 'Try #: ' || to_char(l_Tries));
659: DBMS_LOCK.SLEEP(l_Interval);
660: end if;
661:
662: -- Initialize out variables with NULL string
663: dev_phase := 'NULL';

Line 723: DBMS_LOCK.SLEEP(l_Interval);

719: l_Tries := l_Tries + 1;
720:
721: if (l_Tries < l_MaxTries) then
722: FND_FILE.put_line(FND_FILE.log, 'Try #: ' || to_char(l_Tries));
723: DBMS_LOCK.SLEEP(l_Interval);
724: end if;
725:
726: end loop;
727: