DBA Data[Home] [Help]

APPS.PV_STATUS_NOTIFICATIONS_PKG dependencies on FND_MESSAGE

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

86: open c;
87: fetch c into recinfo;
88: if (c%notfound) then
89: close c;
90: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
91: app_exception.raise_exception;
92: end if;
93: close c;
94: if ( (recinfo.OBJECT_VERSION_NUMBER = p_OBJECT_VERSION_NUMBER)

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

105: OR ((recinfo.NOTIFY_OTHERS_FLAG is null) AND (p_NOTIFY_OTHERS_FLAG is null)))
106: ) then
107: null;
108: else
109: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
110: app_exception.raise_exception;
111: end if;
112: return;
113: end LOCK_ROW;