DBA Data[Home] [Help]

APPS.BSC_TAB_VIEW_LABELS_PKG dependencies on APP_EXCEPTION

Line 216: app_exception.raise_exception;

212: fetch c into recinfo;
213: if (c%notfound) then
214: close c;
215: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
216: app_exception.raise_exception;
217: end if;
218: close c;
219: if ( (recinfo.LABEL_TYPE = X_LABEL_TYPE)
220: ) then

Line 224: app_exception.raise_exception;

220: ) then
221: null;
222: else
223: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
224: app_exception.raise_exception;
225: end if;
226:
227: for tlinfo in c1 loop
228: if (tlinfo.BASELANG = 'Y') then

Line 244: app_exception.raise_exception;

240: ) then
241: null;
242: else
243: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
244: app_exception.raise_exception;
245: end if;
246: end if;
247: end loop;
248: return;

Line 505: APP_EXCEPTION.RAISE_EXCEPTION;

501: FND_MESSAGE.SET_TOKEN('COLUMN', 'X_TAB_VIEW_ID');
502: FND_MESSAGE.SET_TOKEN('VALUE', X_TAB_VIEW_ID);
503: FND_MESSAGE.SET_TOKEN('COLUMN', 'X_LABEL_ID');
504: FND_MESSAGE.SET_TOKEN('VALUE', X_LABEL_ID);
505: APP_EXCEPTION.RAISE_EXCEPTION;
506: END IF;
507: END UPDATE_LINK;
508:
509: