DBA Data[Home] [Help]

APPS.AMS_OBJECT_RULES_PKG dependencies on FND_MESSAGE

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

244: open c;
245: fetch c into recinfo;
246: if (c%notfound) then
247: close c;
248: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
249: app_exception.raise_exception;
250: end if;
251: close c;
252: if ( ((recinfo.PARAM15 = X_PARAM15)

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

311: OR ((recinfo.APPLICATION_ID is null) AND (X_APPLICATION_ID is null)))
312: ) then
313: null;
314: else
315: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
316: app_exception.raise_exception;
317: end if;
318:
319: for tlinfo in c1 loop

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

321: if ( (tlinfo.OBJECT_RULE_ID = X_OBJECT_RULE_ID)
322: ) then
323: null;
324: else
325: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
326: app_exception.raise_exception;
327: end if;
328: end if;
329: end loop;