DBA Data[Home] [Help]

APPS.PV_REFERRAL_STATUS_MAPS_PKG dependencies on FND_MESSAGE

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

60: open c;
61: fetch c into recinfo;
62: if (c%notfound) then
63: close c;
64: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
65: app_exception.raise_exception;
66: end if;
67: close c;
68: if ( (recinfo.OBJECT_VERSION_NUMBER = p_OBJECT_VERSION_NUMBER)

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

74: OR ((recinfo.MAP_STATUS_CODE is null) AND (p_MAP_STATUS_CODE is null)))
75: ) then
76: null;
77: else
78: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
79: app_exception.raise_exception;
80: end if;
81:
82: return;