DBA Data[Home] [Help]

APPS.CSD_REPAIR_MILESTONES_PKG dependencies on FND_MESSAGE

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

77: open c;
78: fetch c into recinfo;
79: if (c%notfound) then
80: close c;
81: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
82: app_exception.raise_exception;
83: end if;
84: close c;
85:

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

85:
86: if (recinfo.OBJECT_VERSION_NUMBER = P_OBJECT_VERSION_NUMBER) then
87: null;
88: else
89: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
90: app_exception.raise_exception;
91: end if;
92:
93: return;