DBA Data[Home] [Help]

APPS.CN_FORMULA_INPUTS_PKG dependencies on FND_MSG_PUB

Line 144: fnd_msg_pub.add;

140: fetch c into tlinfo;
141: if (c%notfound) then
142: close c;
143: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
144: fnd_msg_pub.add;
145: raise fnd_api.g_exc_unexpected_error;
146: end if;
147: close c;
148:

Line 151: fnd_msg_pub.add;

147: close c;
148:
149: if (tlinfo.object_version_number <> x_object_version_number) then
150: fnd_message.set_name('CN', 'CN_INVALID_OBJECT_VERSION');
151: fnd_msg_pub.add;
152: raise fnd_api.g_exc_unexpected_error;
153: end if;
154: end LOCK_ROW;
155:

Line 227: fnd_msg_pub.add;

223: where FORMULA_INPUT_ID = X_FORMULA_INPUT_ID;
224:
225: if (sql%notfound) then
226: fnd_message.set_name('CN', 'CN_RECORD_DELETED');
227: fnd_msg_pub.add;
228: raise fnd_api.g_exc_error;
229: end if;
230:
231: end DELETE_ROW;