DBA Data[Home] [Help]

APPS.CN_CALC_SQL_EXPS_PKG dependencies on FND_MSG_PUB

Line 171: fnd_msg_pub.add;

167: fetch c into tlinfo;
168: if (c%notfound) then
169: close c;
170: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
171: fnd_msg_pub.add;
172: raise fnd_api.g_exc_unexpected_error;
173: end if;
174: close c;
175:

Line 178: fnd_msg_pub.add;

174: close c;
175:
176: if (tlinfo.object_version_number <> p_object_version_number) then
177: fnd_message.set_name('CN', 'CN_RECORD_CHANGED');
178: fnd_msg_pub.add;
179: raise fnd_api.g_exc_unexpected_error;
180: end if;
181:
182: END LOCK_ROW;

Line 268: fnd_msg_pub.add;

264: where CALC_SQL_EXP_ID = X_CALC_SQL_EXP_ID;
265:
266: if (sql%notfound) then
267: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
268: fnd_msg_pub.add;
269: raise fnd_api.g_exc_unexpected_error;
270: end if;
271:
272: end DELETE_ROW;