DBA Data[Home] [Help]

APPS.MWA_CUSTOM_CLASS_PKG dependencies on APP_EXCEPTION

Line 165: app_exception.raise_exception;

161: fetch get_lock into recinfo;
162: if (get_lock%notfound) then
163: close get_lock;
164: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
165: app_exception.raise_exception;
166: end if;
167: close get_lock;
168:
169: if

Line 217: app_exception.raise_exception;

213: then
214: return;
215: else
216: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
217: app_exception.raise_exception;
218: end if;
219:
220: end LOCK_ROW;
221: