DBA Data[Home] [Help]

APPS.JTS_SETUP_FLOW_HIEARCHY_PKG dependencies on FND_MESSAGE

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

397: open c;
398: fetch c into recinfo;
399: if (c%notfound) then
400: close c;
401: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
402: app_exception.raise_exception;
403: end if;
404: close c;
405: if ( ((recinfo.FLOW_TYPE = X_FLOW_TYPE)

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

424: AND (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
425: ) then
426: null;
427: else
428: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
429: app_exception.raise_exception;
430: end if;
431:
432: for tlinfo in c1 loop

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

434: if ( (tlinfo.FLOW_NAME = X_FLOW_NAME)
435: ) then
436: null;
437: else
438: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
439: app_exception.raise_exception;
440: end if;
441: end if;
442: end loop;