DBA Data[Home] [Help]

APPS.CN_RT_FORMULA_ASGNS_PKG dependencies on FND_MSG_PUB

Line 139: fnd_msg_pub.add;

135: fetch c into tlinfo;
136: if (c%notfound) then
137: close c;
138: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
139: fnd_msg_pub.add;
140: raise fnd_api.g_exc_unexpected_error;
141: end if;
142: close c;
143:

Line 146: fnd_msg_pub.add;

142: close c;
143:
144: if (tlinfo.object_version_number <> x_object_version_number) then
145: fnd_message.set_name('CN', 'CN_INVALID_OBJECT_VERSION');
146: fnd_msg_pub.add;
147: raise fnd_api.g_exc_unexpected_error;
148: end if;
149:
150: END LOCK_ROW;

Line 219: fnd_msg_pub.add;

215: where RT_FORMULA_ASGN_ID = X_RT_FORMULA_ASGN_ID;
216:
217: if (sql%notfound) then
218: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
219: fnd_msg_pub.add;
220: raise fnd_api.g_exc_error;
221: end if;
222:
223: end DELETE_ROW;