DBA Data[Home] [Help]

APPS.AR_BPA_CONTENT_AREAS_PKG dependencies on FND_MESSAGE

Line 208: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

204: open c;
205: fetch c into recinfo;
206: if (c%notfound) then
207: close c;
208: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
209: app_exception.raise_exception;
210: end if;
211: close c;
212: if ( (recinfo.DISPLAY_LEVEL = X_DISPLAY_LEVEL)

Line 255: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

251: OR ((recinfo.ITEM_COLUMN_WIDTH is null) AND (X_ITEM_COLUMN_WIDTH is null)))
252: ) then
253: null;
254: else
255: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
256: app_exception.raise_exception;
257: end if;
258:
259: for tlinfo in c1 loop

Line 268: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

264: OR ((tlinfo.CONTENT_DISPLAY_PROMPT is null) AND (X_CONTENT_DISPLAY_PROMPT is null)))
265: ) then
266: null;
267: else
268: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
269: app_exception.raise_exception;
270: end if;
271: end if;
272: end loop;