DBA Data[Home] [Help]

APPS.WMS_XDOCK_SRC_ASSIGN_PKG dependencies on FND_MESSAGE

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

55: open c;
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

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

62: close c;
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;