DBA Data[Home] [Help]

APPS.EAM_ASSIGN_WORK_PVT dependencies on FND_MSG_PUB

Line 47: fnd_msg_pub.initialize;

43: END IF;
44:
45: -- Initialize message list if p_init_msg_list is set to TRUE.
46: IF fnd_api.to_boolean(p_init_msg_list) THEN
47: fnd_msg_pub.initialize;
48: END IF;
49:
50: -- Initialize API return status to success
51: x_return_status := fnd_api.g_ret_sts_success;

Line 164: fnd_msg_pub.count_and_get(

160: COMMIT WORK;
161: END IF;
162:
163: -- Standard call to get message count and if count is 1, get message info.
164: fnd_msg_pub.count_and_get(
165: p_encoded => fnd_api.g_false
166: ,p_count => x_msg_count
167: ,p_data => x_msg_data);
168:

Line 181: -- fnd_msg_pub.count_and_get(

177: ROLLBACK TO eam_assign_work;
178: x_return_status := fnd_api.g_ret_sts_error;
179: eam_execution_jsp.add_message(p_app_short_name => 'EAM',
180: p_msg_name => 'EAM_MNG_REQ_ASSGN_ERROR');
181: -- fnd_msg_pub.count_and_get(
182: -- p_encoded => fnd_api.g_false
183: -- ,p_count => x_msg_count
184: -- ,p_data => x_msg_data);
185:

Line 190: fnd_msg_pub.count_and_get(

186:
187: WHEN fnd_api.g_exc_error THEN
188: ROLLBACK TO eam_assign_work;
189: x_return_status := fnd_api.g_ret_sts_error;
190: fnd_msg_pub.count_and_get(
191: p_encoded => fnd_api.g_false
192: ,p_count => x_msg_count
193: ,p_data => x_msg_data);
194:

Line 198: fnd_msg_pub.count_and_get(

194:
195: WHEN fnd_api.g_exc_unexpected_error THEN
196: ROLLBACK TO eam_assign_work;
197: x_return_status := fnd_api.g_ret_sts_unexp_error;
198: fnd_msg_pub.count_and_get(
199: p_encoded => fnd_api.g_false
200: ,p_count => x_msg_count
201: ,p_data => x_msg_data);
202:

Line 206: IF fnd_msg_pub.check_msg_level(

202:
203: WHEN OTHERS THEN
204: ROLLBACK TO eam_assign_work;
205: x_return_status := fnd_api.g_ret_sts_unexp_error;
206: IF fnd_msg_pub.check_msg_level(
207: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
208: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
209: END IF;
210: fnd_msg_pub.count_and_get(

Line 207: fnd_msg_pub.g_msg_lvl_unexp_error) THEN

203: WHEN OTHERS THEN
204: ROLLBACK TO eam_assign_work;
205: x_return_status := fnd_api.g_ret_sts_unexp_error;
206: IF fnd_msg_pub.check_msg_level(
207: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
208: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
209: END IF;
210: fnd_msg_pub.count_and_get(
211: p_encoded => fnd_api.g_false

Line 208: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

204: ROLLBACK TO eam_assign_work;
205: x_return_status := fnd_api.g_ret_sts_unexp_error;
206: IF fnd_msg_pub.check_msg_level(
207: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
208: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
209: END IF;
210: fnd_msg_pub.count_and_get(
211: p_encoded => fnd_api.g_false
212: ,p_count => x_msg_count

Line 210: fnd_msg_pub.count_and_get(

206: IF fnd_msg_pub.check_msg_level(
207: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
208: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
209: END IF;
210: fnd_msg_pub.count_and_get(
211: p_encoded => fnd_api.g_false
212: ,p_count => x_msg_count
213: ,p_data => x_msg_data);
214: end assign_work;

Line 251: fnd_msg_pub.initialize;

247: END IF;
248:
249: -- Initialize message list if p_init_msg_list is set to TRUE.
250: IF fnd_api.to_boolean(p_init_msg_list) THEN
251: fnd_msg_pub.initialize;
252: END IF;
253:
254: -- Initialize API return status to success
255: x_return_status := fnd_api.g_ret_sts_success;

Line 303: fnd_msg_pub.count_and_get(

299: COMMIT WORK;
300: END IF;
301:
302: -- Standard call to get message count and if count is 1, get message info.
303: fnd_msg_pub.count_and_get(
304: p_encoded => fnd_api.g_false
305: ,p_count => x_msg_count
306: ,p_data => x_msg_data);
307: EXCEPTION

Line 313: fnd_msg_pub.count_and_get(

309: WHEN fnd_api.g_exc_error THEN
310:
311: ROLLBACK TO eam_delete_assignment;
312: x_return_status := fnd_api.g_ret_sts_error;
313: fnd_msg_pub.count_and_get(
314: p_encoded => fnd_api.g_false
315: ,p_count => x_msg_count
316: ,p_data => x_msg_data);
317: WHEN fnd_api.g_exc_unexpected_error THEN

Line 321: fnd_msg_pub.count_and_get(

317: WHEN fnd_api.g_exc_unexpected_error THEN
318:
319: ROLLBACK TO eam_delete_assignment;
320: x_return_status := fnd_api.g_ret_sts_unexp_error;
321: fnd_msg_pub.count_and_get(
322: p_encoded => fnd_api.g_false
323: ,p_count => x_msg_count
324: ,p_data => x_msg_data);
325: WHEN OTHERS THEN

Line 329: IF fnd_msg_pub.check_msg_level(

325: WHEN OTHERS THEN
326:
327: ROLLBACK TO eam_delete_assignment;
328: x_return_status := fnd_api.g_ret_sts_unexp_error;
329: IF fnd_msg_pub.check_msg_level(
330: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
331: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
332: END IF;
333: fnd_msg_pub.count_and_get(

Line 330: fnd_msg_pub.g_msg_lvl_unexp_error) THEN

326:
327: ROLLBACK TO eam_delete_assignment;
328: x_return_status := fnd_api.g_ret_sts_unexp_error;
329: IF fnd_msg_pub.check_msg_level(
330: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
331: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
332: END IF;
333: fnd_msg_pub.count_and_get(
334: p_encoded => fnd_api.g_false

Line 331: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

327: ROLLBACK TO eam_delete_assignment;
328: x_return_status := fnd_api.g_ret_sts_unexp_error;
329: IF fnd_msg_pub.check_msg_level(
330: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
331: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
332: END IF;
333: fnd_msg_pub.count_and_get(
334: p_encoded => fnd_api.g_false
335: ,p_count => x_msg_count

Line 333: fnd_msg_pub.count_and_get(

329: IF fnd_msg_pub.check_msg_level(
330: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
331: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
332: END IF;
333: fnd_msg_pub.count_and_get(
334: p_encoded => fnd_api.g_false
335: ,p_count => x_msg_count
336: ,p_data => x_msg_data);
337: end delete_assignment;