DBA Data[Home] [Help]

APPS.EAM_LINEAR_LOCATIONS_PUB dependencies on FND_MSG_PUB

Line 134: fnd_msg_pub.initialize;

130: END IF;
131:
132: -- Initialize message list if p_init_msg_list is set to TRUE.
133: IF fnd_api.to_boolean(p_init_msg_list) THEN
134: fnd_msg_pub.initialize;
135: END IF;
136:
137: -- Initialize API return status to success
138: x_return_status := fnd_api.g_ret_sts_success;

Line 150: fnd_msg_pub.add;

146:
147: IF (l_count = 0) THEN
148: fnd_message.set_name('EAM', 'EAM_INVALID_PARAMETER');
149: fnd_message.set_token('NAME', 'p_external_source_name : ' || p_external_source_name);
150: fnd_msg_pub.add;
151: RAISE fnd_api.g_exc_error;
152: END IF;
153:
154: -- Validation of external_linear_id

Line 158: fnd_msg_pub.add;

154: -- Validation of external_linear_id
155: IF (p_external_linear_id IS NULL) THEN
156: fnd_message.set_name('EAM', 'EAM_INVALID_PARAMETER');
157: fnd_message.set_token('NAME', 'p_external_linear_id : ' || p_external_linear_id);
158: fnd_msg_pub.add;
159: RAISE fnd_api.g_exc_error;
160: END IF;
161:
162: SELECT count(*) INTO l_count FROM dual WHERE EXISTS

Line 169: fnd_msg_pub.add;

165: AND external_linear_type = p_external_linear_type);
166:
167: IF (l_count > 0) THEN
168: fnd_message.set_name('EAM', 'EAM_EXT_LINEAR_ID_EXISTS');
169: fnd_msg_pub.add;
170: RAISE fnd_api.g_exc_error;
171: END IF;
172:
173: -- insert into eam_linear_locations table

Line 198: fnd_msg_pub.count_and_get(p_count => x_msg_count

194: COMMIT WORK;
195: END IF;
196:
197: -- Standard call to get message count and if count is 1, get message info.
198: fnd_msg_pub.count_and_get(p_count => x_msg_count
199: ,p_data => x_msg_data);
200: EXCEPTION
201: WHEN fnd_api.g_exc_error THEN
202: ROLLBACK TO eam_linear_locations_pub;

Line 204: fnd_msg_pub.count_and_get(p_count => x_msg_count

200: EXCEPTION
201: WHEN fnd_api.g_exc_error THEN
202: ROLLBACK TO eam_linear_locations_pub;
203: x_return_status := fnd_api.g_ret_sts_error;
204: fnd_msg_pub.count_and_get(p_count => x_msg_count
205: ,p_data => x_msg_data);
206: WHEN fnd_api.g_exc_unexpected_error THEN
207: ROLLBACK TO eam_linear_locations_pub;
208: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 209: fnd_msg_pub.count_and_get(p_count => x_msg_count

205: ,p_data => x_msg_data);
206: WHEN fnd_api.g_exc_unexpected_error THEN
207: ROLLBACK TO eam_linear_locations_pub;
208: x_return_status := fnd_api.g_ret_sts_unexp_error;
209: fnd_msg_pub.count_and_get(p_count => x_msg_count
210: ,p_data => x_msg_data);
211: WHEN OTHERS THEN
212: ROLLBACK TO eam_linear_locations_pub;
213: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 214: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

210: ,p_data => x_msg_data);
211: WHEN OTHERS THEN
212: ROLLBACK TO eam_linear_locations_pub;
213: x_return_status := fnd_api.g_ret_sts_unexp_error;
214: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
215: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
216: END IF;
217: fnd_msg_pub.count_and_get(p_count => x_msg_count
218: ,p_data => x_msg_data);

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

211: WHEN OTHERS THEN
212: ROLLBACK TO eam_linear_locations_pub;
213: x_return_status := fnd_api.g_ret_sts_unexp_error;
214: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
215: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
216: END IF;
217: fnd_msg_pub.count_and_get(p_count => x_msg_count
218: ,p_data => x_msg_data);
219: END insert_row;

Line 217: fnd_msg_pub.count_and_get(p_count => x_msg_count

213: x_return_status := fnd_api.g_ret_sts_unexp_error;
214: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
215: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
216: END IF;
217: fnd_msg_pub.count_and_get(p_count => x_msg_count
218: ,p_data => x_msg_data);
219: END insert_row;
220:
221:

Line 258: fnd_msg_pub.initialize;

254: END IF;
255:
256: -- Initialize message list if p_init_msg_list is set to TRUE.
257: IF fnd_api.to_boolean(p_init_msg_list) THEN
258: fnd_msg_pub.initialize;
259: END IF;
260:
261: -- Initialize API return status to success
262: x_return_status := fnd_api.g_ret_sts_success;

Line 273: fnd_msg_pub.add;

269:
270: IF (l_count = 0) THEN
271: fnd_message.set_name('EAM', 'EAM_INVALID_PARAMETER');
272: fnd_message.set_token('NAME', 'p_eam_linear_id : ' || p_eam_linear_id);
273: fnd_msg_pub.add;
274: RAISE fnd_api.g_exc_error;
275: END IF;
276:
277: -- Validation of external_source_name

Line 285: fnd_msg_pub.add;

281:
282: IF (l_count = 0) THEN
283: fnd_message.set_name('EAM', 'EAM_INVALID_PARAMETER');
284: fnd_message.set_token('NAME', 'p_external_source_name : ' || p_external_source_name);
285: fnd_msg_pub.add;
286: RAISE fnd_api.g_exc_error;
287: END IF;
288:
289: -- Validation of external_linear_id

Line 293: fnd_msg_pub.add;

289: -- Validation of external_linear_id
290: IF (p_external_linear_id IS NULL) THEN
291: fnd_message.set_name('EAM', 'EAM_INVALID_PARAMETER');
292: fnd_message.set_token('NAME', 'p_external_linear_id : ' || p_external_linear_id);
293: fnd_msg_pub.add;
294: RAISE fnd_api.g_exc_error;
295: END IF;
296:
297: SELECT count(*) INTO l_count FROM dual WHERE EXISTS

Line 305: fnd_msg_pub.add;

301: AND eam_linear_id <> p_eam_linear_id);
302:
303: IF (l_count > 0) THEN
304: fnd_message.set_name('EAM', 'EAM_EXT_LINEAR_ID_EXISTS');
305: fnd_msg_pub.add;
306: RAISE fnd_api.g_exc_error;
307: END IF;
308:
309: -- Update the record in eam_linear_locations table

Line 326: fnd_msg_pub.count_and_get(p_count => x_msg_count

322: COMMIT WORK;
323: END IF;
324:
325: -- Standard call to get message count and if count is 1, get message info.
326: fnd_msg_pub.count_and_get(p_count => x_msg_count
327: ,p_data => x_msg_data);
328: EXCEPTION
329: WHEN fnd_api.g_exc_error THEN
330: ROLLBACK TO eam_linear_locations_pub;

Line 332: fnd_msg_pub.count_and_get(p_count => x_msg_count

328: EXCEPTION
329: WHEN fnd_api.g_exc_error THEN
330: ROLLBACK TO eam_linear_locations_pub;
331: x_return_status := fnd_api.g_ret_sts_error;
332: fnd_msg_pub.count_and_get(p_count => x_msg_count
333: ,p_data => x_msg_data);
334: WHEN fnd_api.g_exc_unexpected_error THEN
335: ROLLBACK TO eam_linear_locations_pub;
336: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 337: fnd_msg_pub.count_and_get(p_count => x_msg_count

333: ,p_data => x_msg_data);
334: WHEN fnd_api.g_exc_unexpected_error THEN
335: ROLLBACK TO eam_linear_locations_pub;
336: x_return_status := fnd_api.g_ret_sts_unexp_error;
337: fnd_msg_pub.count_and_get(p_count => x_msg_count
338: ,p_data => x_msg_data);
339: WHEN OTHERS THEN
340: ROLLBACK TO eam_linear_locations_pub;
341: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 342: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

338: ,p_data => x_msg_data);
339: WHEN OTHERS THEN
340: ROLLBACK TO eam_linear_locations_pub;
341: x_return_status := fnd_api.g_ret_sts_unexp_error;
342: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
343: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
344: END IF;
345: fnd_msg_pub.count_and_get(p_count => x_msg_count
346: ,p_data => x_msg_data);

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

339: WHEN OTHERS THEN
340: ROLLBACK TO eam_linear_locations_pub;
341: x_return_status := fnd_api.g_ret_sts_unexp_error;
342: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
343: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
344: END IF;
345: fnd_msg_pub.count_and_get(p_count => x_msg_count
346: ,p_data => x_msg_data);
347: END update_row;

Line 345: fnd_msg_pub.count_and_get(p_count => x_msg_count

341: x_return_status := fnd_api.g_ret_sts_unexp_error;
342: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
343: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
344: END IF;
345: fnd_msg_pub.count_and_get(p_count => x_msg_count
346: ,p_data => x_msg_data);
347: END update_row;
348:
349:

Line 384: fnd_msg_pub.initialize;

380: END IF;
381:
382: -- Initialize message list if p_init_msg_list is set to TRUE.
383: IF fnd_api.to_boolean(p_init_msg_list) THEN
384: fnd_msg_pub.initialize;
385: END IF;
386:
387: -- Initialize API return status to success
388: x_return_status := fnd_api.g_ret_sts_success;

Line 400: fnd_msg_pub.add;

396:
397: IF (l_count = 0) THEN
398: fnd_message.set_name('EAM', 'EAM_INVALID_PARAMETER');
399: fnd_message.set_token('NAME', 'p_external_source_name : ' || p_external_source_name);
400: fnd_msg_pub.add;
401: RAISE fnd_api.g_exc_error;
402: END IF;
403:
404:

Line 414: --fnd_msg_pub.add;

410: EXCEPTION
411: WHEN NO_DATA_FOUND THEN
412: x_eam_linear_id := -1;
413: --fnd_message.set_name('EAM', 'EAM_INVALID_EXT_LINEAR_ID');
414: --fnd_msg_pub.add;
415: --RAISE fnd_api.g_exc_error;
416: END;
417:
418: -- Standard call to get message count and if count is 1, get message info.

Line 419: fnd_msg_pub.count_and_get(p_count => x_msg_count

415: --RAISE fnd_api.g_exc_error;
416: END;
417:
418: -- Standard call to get message count and if count is 1, get message info.
419: fnd_msg_pub.count_and_get(p_count => x_msg_count
420: ,p_data => x_msg_data);
421: EXCEPTION
422: WHEN fnd_api.g_exc_error THEN
423: ROLLBACK TO eam_linear_locations_pub;

Line 425: fnd_msg_pub.count_and_get(p_count => x_msg_count

421: EXCEPTION
422: WHEN fnd_api.g_exc_error THEN
423: ROLLBACK TO eam_linear_locations_pub;
424: x_return_status := fnd_api.g_ret_sts_error;
425: fnd_msg_pub.count_and_get(p_count => x_msg_count
426: ,p_data => x_msg_data);
427: WHEN fnd_api.g_exc_unexpected_error THEN
428: ROLLBACK TO eam_linear_locations_pub;
429: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 430: fnd_msg_pub.count_and_get(p_count => x_msg_count

426: ,p_data => x_msg_data);
427: WHEN fnd_api.g_exc_unexpected_error THEN
428: ROLLBACK TO eam_linear_locations_pub;
429: x_return_status := fnd_api.g_ret_sts_unexp_error;
430: fnd_msg_pub.count_and_get(p_count => x_msg_count
431: ,p_data => x_msg_data);
432: WHEN OTHERS THEN
433: ROLLBACK TO eam_linear_locations_pub;
434: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 435: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

431: ,p_data => x_msg_data);
432: WHEN OTHERS THEN
433: ROLLBACK TO eam_linear_locations_pub;
434: x_return_status := fnd_api.g_ret_sts_unexp_error;
435: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
436: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
437: END IF;
438: fnd_msg_pub.count_and_get(p_count => x_msg_count
439: ,p_data => x_msg_data);

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

432: WHEN OTHERS THEN
433: ROLLBACK TO eam_linear_locations_pub;
434: x_return_status := fnd_api.g_ret_sts_unexp_error;
435: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
436: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
437: END IF;
438: fnd_msg_pub.count_and_get(p_count => x_msg_count
439: ,p_data => x_msg_data);
440: END get_eam_linear_id;

Line 438: fnd_msg_pub.count_and_get(p_count => x_msg_count

434: x_return_status := fnd_api.g_ret_sts_unexp_error;
435: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
436: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
437: END IF;
438: fnd_msg_pub.count_and_get(p_count => x_msg_count
439: ,p_data => x_msg_data);
440: END get_eam_linear_id;
441:
442: procedure create_asset(

Line 508: fnd_msg_pub.initialize;

504: END IF;
505:
506: -- Initialize message list if p_init_msg_list is set to TRUE.
507: IF fnd_api.to_boolean(p_init_msg_list) THEN
508: fnd_msg_pub.initialize;
509: END IF;
510:
511: -- Initialize API return status to success
512: x_return_status := fnd_api.g_ret_sts_success;

Line 580: fnd_msg_pub.count_and_get(p_count => x_msg_count

576: IF FND_API.To_Boolean( p_commit ) THEN
577: COMMIT WORK;
578: END IF;
579: -- Standard call to get message count and if count is 1, get message info.
580: fnd_msg_pub.count_and_get(p_count => x_msg_count
581: ,p_data => x_msg_data);
582: EXCEPTION
583: WHEN fnd_api.g_exc_error THEN
584: ROLLBACK TO eam_linear_locations_pub;

Line 586: fnd_msg_pub.count_and_get(p_count => x_msg_count

582: EXCEPTION
583: WHEN fnd_api.g_exc_error THEN
584: ROLLBACK TO eam_linear_locations_pub;
585: x_return_status := fnd_api.g_ret_sts_error;
586: fnd_msg_pub.count_and_get(p_count => x_msg_count
587: ,p_data => x_msg_data);
588: WHEN fnd_api.g_exc_unexpected_error THEN
589: ROLLBACK TO eam_linear_locations_pub;
590: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 591: fnd_msg_pub.count_and_get(p_count => x_msg_count

587: ,p_data => x_msg_data);
588: WHEN fnd_api.g_exc_unexpected_error THEN
589: ROLLBACK TO eam_linear_locations_pub;
590: x_return_status := fnd_api.g_ret_sts_unexp_error;
591: fnd_msg_pub.count_and_get(p_count => x_msg_count
592: ,p_data => x_msg_data);
593: WHEN OTHERS THEN
594: ROLLBACK TO eam_linear_locations_pub;
595: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 596: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

592: ,p_data => x_msg_data);
593: WHEN OTHERS THEN
594: ROLLBACK TO eam_linear_locations_pub;
595: x_return_status := fnd_api.g_ret_sts_unexp_error;
596: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
597: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
598: END IF;
599: fnd_msg_pub.count_and_get(p_count => x_msg_count
600: ,p_data => x_msg_data);

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

593: WHEN OTHERS THEN
594: ROLLBACK TO eam_linear_locations_pub;
595: x_return_status := fnd_api.g_ret_sts_unexp_error;
596: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
597: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
598: END IF;
599: fnd_msg_pub.count_and_get(p_count => x_msg_count
600: ,p_data => x_msg_data);
601: END create_asset;

Line 599: fnd_msg_pub.count_and_get(p_count => x_msg_count

595: x_return_status := fnd_api.g_ret_sts_unexp_error;
596: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
597: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
598: END IF;
599: fnd_msg_pub.count_and_get(p_count => x_msg_count
600: ,p_data => x_msg_data);
601: END create_asset;
602:
603: procedure create_work_request(

Line 669: fnd_msg_pub.initialize;

665: END IF;
666:
667: -- Initialize message list if p_init_msg_list is set to TRUE.
668: IF fnd_api.to_boolean(p_init_msg_list) THEN
669: fnd_msg_pub.initialize;
670: END IF;
671:
672: -- Initialize API return status to success
673: x_return_status := fnd_api.g_ret_sts_success;

Line 731: fnd_msg_pub.count_and_get(p_count => x_msg_count

727: IF FND_API.To_Boolean( p_commit ) THEN
728: COMMIT WORK;
729: END IF;
730: -- Standard call to get message count and if count is 1, get message info.
731: fnd_msg_pub.count_and_get(p_count => x_msg_count
732: ,p_data => x_msg_data);
733: EXCEPTION
734: WHEN fnd_api.g_exc_error THEN
735: ROLLBACK TO eam_linear_locations_pub;

Line 737: fnd_msg_pub.count_and_get(p_count => x_msg_count

733: EXCEPTION
734: WHEN fnd_api.g_exc_error THEN
735: ROLLBACK TO eam_linear_locations_pub;
736: x_return_status := fnd_api.g_ret_sts_error;
737: fnd_msg_pub.count_and_get(p_count => x_msg_count
738: ,p_data => x_msg_data);
739: WHEN fnd_api.g_exc_unexpected_error THEN
740: ROLLBACK TO eam_linear_locations_pub;
741: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 742: fnd_msg_pub.count_and_get(p_count => x_msg_count

738: ,p_data => x_msg_data);
739: WHEN fnd_api.g_exc_unexpected_error THEN
740: ROLLBACK TO eam_linear_locations_pub;
741: x_return_status := fnd_api.g_ret_sts_unexp_error;
742: fnd_msg_pub.count_and_get(p_count => x_msg_count
743: ,p_data => x_msg_data);
744: WHEN OTHERS THEN
745: ROLLBACK TO eam_linear_locations_pub;
746: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 747: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

743: ,p_data => x_msg_data);
744: WHEN OTHERS THEN
745: ROLLBACK TO eam_linear_locations_pub;
746: x_return_status := fnd_api.g_ret_sts_unexp_error;
747: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
748: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
749: END IF;
750: fnd_msg_pub.count_and_get(p_count => x_msg_count
751: ,p_data => x_msg_data);

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

744: WHEN OTHERS THEN
745: ROLLBACK TO eam_linear_locations_pub;
746: x_return_status := fnd_api.g_ret_sts_unexp_error;
747: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
748: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
749: END IF;
750: fnd_msg_pub.count_and_get(p_count => x_msg_count
751: ,p_data => x_msg_data);
752:

Line 750: fnd_msg_pub.count_and_get(p_count => x_msg_count

746: x_return_status := fnd_api.g_ret_sts_unexp_error;
747: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
748: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
749: END IF;
750: fnd_msg_pub.count_and_get(p_count => x_msg_count
751: ,p_data => x_msg_data);
752:
753: end create_work_request;
754:

Line 916: fnd_msg_pub.initialize;

912: END IF;
913:
914: -- Initialize message list if p_init_msg_list is set to TRUE.
915: IF fnd_api.to_boolean(p_init_msg_list) THEN
916: fnd_msg_pub.initialize;
917: END IF;
918:
919: -- Initialize API return status to success
920: x_return_status := fnd_api.g_ret_sts_success;

Line 1069: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_NEXT,

1065: , p_debug_file_mode => l_debug_file_mode
1066: );
1067:
1068: if x_return_status <> 'S' and x_msg_count > 0 then
1069: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_NEXT,
1070: p_encoded => 'F',
1071: p_data => x_msg_data,
1072: p_msg_index_out => l_count);
1073: end if;

Line 1094: fnd_msg_pub.count_and_get(p_count => x_msg_count

1090: IF FND_API.To_Boolean( p_commit ) THEN
1091: COMMIT WORK;
1092: END IF;
1093: -- Standard call to get message count and if count is 1, get message info.
1094: fnd_msg_pub.count_and_get(p_count => x_msg_count
1095: ,p_data => x_msg_data);
1096: EXCEPTION
1097: WHEN fnd_api.g_exc_error THEN
1098: ROLLBACK TO create_eam_wo;

Line 1100: fnd_msg_pub.count_and_get(p_count => x_msg_count

1096: EXCEPTION
1097: WHEN fnd_api.g_exc_error THEN
1098: ROLLBACK TO create_eam_wo;
1099: x_return_status := fnd_api.g_ret_sts_error;
1100: fnd_msg_pub.count_and_get(p_count => x_msg_count
1101: ,p_data => x_msg_data);
1102: WHEN fnd_api.g_exc_unexpected_error THEN
1103: ROLLBACK TO create_eam_wo;
1104: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 1105: fnd_msg_pub.count_and_get(p_count => x_msg_count

1101: ,p_data => x_msg_data);
1102: WHEN fnd_api.g_exc_unexpected_error THEN
1103: ROLLBACK TO create_eam_wo;
1104: x_return_status := fnd_api.g_ret_sts_unexp_error;
1105: fnd_msg_pub.count_and_get(p_count => x_msg_count
1106: ,p_data => x_msg_data);
1107: WHEN OTHERS THEN
1108: ROLLBACK TO create_eam_wo;
1109: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 1110: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

1106: ,p_data => x_msg_data);
1107: WHEN OTHERS THEN
1108: ROLLBACK TO create_eam_wo;
1109: x_return_status := fnd_api.g_ret_sts_unexp_error;
1110: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1111: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1112: END IF;
1113: fnd_msg_pub.count_and_get(p_count => x_msg_count
1114: ,p_data => x_msg_data);

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

1107: WHEN OTHERS THEN
1108: ROLLBACK TO create_eam_wo;
1109: x_return_status := fnd_api.g_ret_sts_unexp_error;
1110: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1111: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1112: END IF;
1113: fnd_msg_pub.count_and_get(p_count => x_msg_count
1114: ,p_data => x_msg_data);
1115:

Line 1113: fnd_msg_pub.count_and_get(p_count => x_msg_count

1109: x_return_status := fnd_api.g_ret_sts_unexp_error;
1110: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1111: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1112: END IF;
1113: fnd_msg_pub.count_and_get(p_count => x_msg_count
1114: ,p_data => x_msg_data);
1115:
1116: end create_eam_wo;
1117: