DBA Data[Home] [Help]

APPS.AMW_AP_STEPS_PKG dependencies on FND_MESSAGE

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

228: open c;
229: fetch c into recinfo;
230: if (c%notfound) then
231: close c;
232: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
233: app_exception.raise_exception;
234: end if;
235: close c;
236: if ( (recinfo.AUDIT_PROCEDURE_ID = X_AUDIT_PROCEDURE_ID)

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

283: OR ((recinfo.REQUESTOR_ID is null) AND (X_REQUESTOR_ID is null)))
284: ) then
285: null;
286: else
287: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
288: app_exception.raise_exception;
289: end if;
290:
291: for tlinfo in c1 loop

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

295: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
296: ) then
297: null;
298: else
299: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
300: app_exception.raise_exception;
301: end if;
302: end if;
303: end loop;