DBA Data[Home] [Help]

APPS.JTF_NAV_TABS_PKG dependencies on APP_EXCEPTION

Line 151: app_exception.raise_exception;

147: fetch c into recinfo;
148: if (c%notfound) then
149: close c;
150: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
151: app_exception.raise_exception;
152: end if;
153: close c;
154: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
155: AND (recinfo.ICON_NAME = X_ICON_NAME)

Line 164: app_exception.raise_exception;

160: ) then
161: null;
162: else
163: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
164: app_exception.raise_exception;
165: end if;
166:
167: for tlinfo in c1 loop
168: if (tlinfo.BASELANG = 'Y') then

Line 174: app_exception.raise_exception;

170: ) then
171: null;
172: else
173: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
174: app_exception.raise_exception;
175: end if;
176: end if;
177: end loop;
178: return;