DBA Data[Home] [Help]

APPS.CN_USER_ACCESS_PKG dependencies on FND_MSG_PUB

Line 164: fnd_msg_pub.add;

160: fetch c into tlinfo;
161: if (c%notfound) then
162: close c;
163: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
164: fnd_msg_pub.add;
165: raise fnd_api.g_exc_unexpected_error;
166: end if;
167: close c;
168:

Line 171: fnd_msg_pub.add;

167: close c;
168:
169: if (tlinfo.object_version_number <> p_object_version_number) then
170: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
171: fnd_msg_pub.add;
172: raise fnd_api.g_exc_unexpected_error;
173: end if;
174:
175: END LOCK_ROW;