DBA Data[Home] [Help]

APPS.WMS_XDOCK_SRC_ASSIGN_PKG dependencies on APP_EXCEPTION

Line 60: app_exception.raise_exception;

56: fetch c into recinfo;
57: if (c%notfound) then
58: close c;
59: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
60: app_exception.raise_exception;
61: end if;
62: close c;
63: if (recinfo.PRIORITY = X_PRIORITY) then
64: null;

Line 67: app_exception.raise_exception;

63: if (recinfo.PRIORITY = X_PRIORITY) then
64: null;
65: else
66: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
67: app_exception.raise_exception;
68: end if;
69:
70: return;
71: end LOCK_ROW;