DBA Data[Home] [Help]

APPS.FND_OAM_DS_ALGOS_PKG dependencies on APP_EXCEPTION

Line 584: app_exception.raise_exception;

580: fetch c into recinfo;
581: if (c%notfound) then
582: close c;
583: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
584: app_exception.raise_exception;
585: end if;
586: close c;
587: if ( ((recinfo.START_DATE = X_START_DATE)
588: OR ((recinfo.START_DATE is null) AND (X_START_DATE is null)))

Line 605: app_exception.raise_exception;

601: ) then
602: null;
603: else
604: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
605: app_exception.raise_exception;
606: end if;
607:
608: for tlinfo in c1 loop
609: if (tlinfo.BASELANG = 'Y') then

Line 617: app_exception.raise_exception;

613: ) then
614: null;
615: else
616: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
617: app_exception.raise_exception;
618: end if;
619: end if;
620: end loop;
621: return;