DBA Data[Home] [Help]

APPS.CSI_SYSTEMS_PUB dependencies on FND_MSG_PUB

Line 61: fnd_msg_pub.initialize;

57:
58: -- initialize message list if p_init_msg_list is set to true.
59: IF fnd_api.to_boolean( p_init_msg_list )
60: THEN
61: fnd_msg_pub.initialize;
62: END IF;
63:
64:
65:

Line 133: fnd_msg_pub.count_and_get

129: END IF;
130: ****/
131:
132: -- standard call to get message count and if count is 1, get message info.
133: fnd_msg_pub.count_and_get
134: ( p_count => x_msg_count,
135: p_data => x_msg_data
136: );
137:

Line 142: fnd_msg_pub.count_and_get

138: EXCEPTION
139: WHEN fnd_api.g_exc_error THEN
140: -- ROLLBACK TO get_systems_pub;
141: x_return_status := fnd_api.g_ret_sts_error ;
142: fnd_msg_pub.count_and_get
143: (p_count => x_msg_count ,
144: p_data => x_msg_data
145: );
146:

Line 150: fnd_msg_pub.count_and_get

146:
147: WHEN fnd_api.g_exc_unexpected_error THEN
148: -- ROLLBACK TO get_systems_pub;
149: x_return_status := fnd_api.g_ret_sts_unexp_error ;
150: fnd_msg_pub.count_and_get
151: (p_count => x_msg_count ,
152: p_data => x_msg_data
153: );
154:

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

154:
155: WHEN OTHERS THEN
156: -- ROLLBACK TO get_systems_pub;
157: x_return_status := fnd_api.g_ret_sts_unexp_error ;
158: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
159: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
160: END IF;
161: fnd_msg_pub.count_and_get
162: (p_count => x_msg_count ,

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

155: WHEN OTHERS THEN
156: -- ROLLBACK TO get_systems_pub;
157: x_return_status := fnd_api.g_ret_sts_unexp_error ;
158: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
159: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
160: END IF;
161: fnd_msg_pub.count_and_get
162: (p_count => x_msg_count ,
163: p_data => x_msg_data

Line 161: fnd_msg_pub.count_and_get

157: x_return_status := fnd_api.g_ret_sts_unexp_error ;
158: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
159: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
160: END IF;
161: fnd_msg_pub.count_and_get
162: (p_count => x_msg_count ,
163: p_data => x_msg_data
164: );
165: END get_systems;

Line 213: fnd_msg_pub.initialize;

209:
210: -- initialize message list if p_init_msg_list is set to true.
211: IF fnd_api.to_boolean( p_init_msg_list )
212: THEN
213: fnd_msg_pub.initialize;
214: END IF;
215:
216:
217:

Line 292: fnd_msg_pub.count_and_get

288: END IF;
289: ****/
290:
291: -- standard call to get message count and if count is 1, get message info.
292: fnd_msg_pub.count_and_get
293: ( p_count => x_msg_count,
294: p_data => x_msg_data
295: );
296:

Line 301: fnd_msg_pub.count_and_get

297: EXCEPTION
298: WHEN fnd_api.g_exc_error THEN
299: ROLLBACK TO create_system_pub;
300: x_return_status := fnd_api.g_ret_sts_error ;
301: fnd_msg_pub.count_and_get
302: (p_count => x_msg_count ,
303: p_data => x_msg_data
304: );
305:

Line 309: fnd_msg_pub.count_and_get

305:
306: WHEN fnd_api.g_exc_unexpected_error THEN
307: ROLLBACK TO create_system_pub;
308: x_return_status := fnd_api.g_ret_sts_unexp_error ;
309: fnd_msg_pub.count_and_get
310: (p_count => x_msg_count ,
311: p_data => x_msg_data
312: );
313:

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

313:
314: WHEN OTHERS THEN
315: ROLLBACK TO create_system_pub;
316: x_return_status := fnd_api.g_ret_sts_unexp_error ;
317: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
318: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
319: END IF;
320: fnd_msg_pub.count_and_get
321: (p_count => x_msg_count ,

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

314: WHEN OTHERS THEN
315: ROLLBACK TO create_system_pub;
316: x_return_status := fnd_api.g_ret_sts_unexp_error ;
317: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
318: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
319: END IF;
320: fnd_msg_pub.count_and_get
321: (p_count => x_msg_count ,
322: p_data => x_msg_data

Line 320: fnd_msg_pub.count_and_get

316: x_return_status := fnd_api.g_ret_sts_unexp_error ;
317: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
318: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
319: END IF;
320: fnd_msg_pub.count_and_get
321: (p_count => x_msg_count ,
322: p_data => x_msg_data
323: );
324:

Line 370: fnd_msg_pub.initialize;

366:
367: -- initialize message list if p_init_msg_list is set to true.
368: IF fnd_api.to_boolean( p_init_msg_list )
369: THEN
370: fnd_msg_pub.initialize;
371: END IF;
372:
373:
374: -- initialize api return status to success

Line 444: fnd_msg_pub.count_and_get

440: END IF;
441: ****/
442:
443: -- standard call to get message count and if count is 1, get message info.
444: fnd_msg_pub.count_and_get
445: ( p_count => x_msg_count,
446: p_data => x_msg_data
447: );
448:

Line 453: fnd_msg_pub.count_and_get

449: EXCEPTION
450: WHEN fnd_api.g_exc_error THEN
451: ROLLBACK TO update_system_pub;
452: x_return_status := fnd_api.g_ret_sts_error ;
453: fnd_msg_pub.count_and_get
454: (p_count => x_msg_count ,
455: p_data => x_msg_data
456: );
457:

Line 461: fnd_msg_pub.count_and_get

457:
458: WHEN fnd_api.g_exc_unexpected_error THEN
459: ROLLBACK TO update_system_pub;
460: x_return_status := fnd_api.g_ret_sts_unexp_error ;
461: fnd_msg_pub.count_and_get
462: (p_count => x_msg_count ,
463: p_data => x_msg_data
464: );
465:

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

465:
466: WHEN OTHERS THEN
467: ROLLBACK TO update_system_pub;
468: x_return_status := fnd_api.g_ret_sts_unexp_error ;
469: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
470: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
471: END IF;
472: fnd_msg_pub.count_and_get
473: (p_count => x_msg_count ,

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

466: WHEN OTHERS THEN
467: ROLLBACK TO update_system_pub;
468: x_return_status := fnd_api.g_ret_sts_unexp_error ;
469: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
470: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
471: END IF;
472: fnd_msg_pub.count_and_get
473: (p_count => x_msg_count ,
474: p_data => x_msg_data

Line 472: fnd_msg_pub.count_and_get

468: x_return_status := fnd_api.g_ret_sts_unexp_error ;
469: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
470: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
471: END IF;
472: fnd_msg_pub.count_and_get
473: (p_count => x_msg_count ,
474: p_data => x_msg_data
475: );
476: END update_system;

Line 522: fnd_msg_pub.initialize;

518:
519: -- initialize message list if p_init_msg_list is set to true.
520: IF fnd_api.to_boolean( p_init_msg_list )
521: THEN
522: fnd_msg_pub.initialize;
523: END IF;
524:
525:
526: -- initialize api return status to success

Line 599: fnd_msg_pub.count_and_get

595: END IF;
596: ****/
597:
598: -- standard call to get message count and if count is 1, get message info.
599: fnd_msg_pub.count_and_get
600: ( p_count => x_msg_count,
601: p_data => x_msg_data
602: );
603:

Line 608: fnd_msg_pub.count_and_get

604: EXCEPTION
605: WHEN fnd_api.g_exc_error THEN
606: ROLLBACK TO expire_system_pub;
607: x_return_status := fnd_api.g_ret_sts_error ;
608: fnd_msg_pub.count_and_get
609: (p_count => x_msg_count ,
610: p_data => x_msg_data
611: );
612:

Line 616: fnd_msg_pub.count_and_get

612:
613: WHEN fnd_api.g_exc_unexpected_error THEN
614: ROLLBACK TO expire_system_pub;
615: x_return_status := fnd_api.g_ret_sts_unexp_error ;
616: fnd_msg_pub.count_and_get
617: (p_count => x_msg_count ,
618: p_data => x_msg_data
619: );
620:

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

620:
621: WHEN OTHERS THEN
622: ROLLBACK TO expire_system_pub;
623: x_return_status := fnd_api.g_ret_sts_unexp_error ;
624: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
625: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
626: END IF;
627: fnd_msg_pub.count_and_get
628: (p_count => x_msg_count ,

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

621: WHEN OTHERS THEN
622: ROLLBACK TO expire_system_pub;
623: x_return_status := fnd_api.g_ret_sts_unexp_error ;
624: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
625: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
626: END IF;
627: fnd_msg_pub.count_and_get
628: (p_count => x_msg_count ,
629: p_data => x_msg_data

Line 627: fnd_msg_pub.count_and_get

623: x_return_status := fnd_api.g_ret_sts_unexp_error ;
624: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
625: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
626: END IF;
627: fnd_msg_pub.count_and_get
628: (p_count => x_msg_count ,
629: p_data => x_msg_data
630: );
631: